@stacksjs/calendar-api 0.64.5 → 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.
@@ -0,0 +1,2 @@
1
+ import type { CalendarLink } from "../types";
2
+ export declare function generateGoogle(link: CalendarLink): string;
@@ -0,0 +1,2 @@
1
+ import type { CalendarLink } from "../types";
2
+ export declare function generateIcs(link: CalendarLink): string;
@@ -0,0 +1,2 @@
1
+ import type { CalendarLink } from "../types";
2
+ export declare function generateOutlook(link: CalendarLink): string;
@@ -0,0 +1,3 @@
1
+ import type { CalendarLink } from "../types";
2
+ export declare function generateYahoo(link: CalendarLink): string;
3
+ export default generateYahoo;
@@ -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;