calendar-link
Version:
📅 Calendar link generator for popular services, like Google, Outlook, and Yahoo.
13 lines (12 loc) • 849 B
TypeScript
import { CalendarEvent, NormalizedCalendarEvent } from "./interfaces";
export declare const eventify: (event: CalendarEvent, toUtc?: boolean) => NormalizedCalendarEvent;
export declare const google: (calendarEvent: CalendarEvent) => string;
export declare const outlook: (calendarEvent: CalendarEvent) => string;
export declare const outlookMobile: (calendarEvent: CalendarEvent) => string;
export declare const office365: (calendarEvent: CalendarEvent) => string;
export declare const office365Mobile: (calendarEvent: CalendarEvent) => string;
export declare const yahoo: (calendarEvent: CalendarEvent) => string;
export declare const aol: (calendarEvent: CalendarEvent) => string;
export declare const msTeams: (calendarEvent: CalendarEvent) => string;
export declare const ics: (calendarEvent: CalendarEvent) => string;
export { CalendarEvent };