@stacksjs/calendar-api 0.64.6 → 0.65.0
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/dist/generators/google.d.ts +2 -0
- package/dist/generators/ics.d.ts +2 -0
- package/dist/generators/weboutlook.d.ts +2 -0
- package/dist/generators/yahoo.d.ts +3 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +216 -2
- package/dist/index.js.map +199 -8
- package/dist/types.d.ts +43 -0
- package/package.json +8 -13
- package/src/generators/google.ts +7 -3
- package/src/generators/ics.ts +8 -4
- package/src/generators/weboutlook.ts +7 -3
- package/src/generators/yahoo.ts +7 -3
- package/src/index.ts +1 -4
- package/src/types.ts +1 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { CalendarLink } from "./types";
|
|
2
|
+
export declare function exportCalendarGoogle(link: CalendarLink): string;
|
|
3
|
+
export declare function exportCalendarIcs(link: CalendarLink): string;
|
|
4
|
+
export declare function exportCalendarOutlook(link: CalendarLink): string;
|
|
5
|
+
export declare function exportCalendarYahoo(link: CalendarLink): string;
|