ical-generator 6.0.1-develop.7 → 6.0.1-develop.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/event.ts +3 -3
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ these breaking changes and how you can adapt your code can be found in our
|
|
|
38
38
|
## ⚡️ Quick Start
|
|
39
39
|
|
|
40
40
|
```javascript
|
|
41
|
-
import ical from 'ical-generator';
|
|
41
|
+
import ical, {ICalCalendarMethod} from 'ical-generator';
|
|
42
42
|
import http from 'node:http';
|
|
43
43
|
|
|
44
44
|
const calendar = ical({name: 'my first iCal'});
|