UNPKG

icalendar-events

Version:

A RFC5545 compliant parser for iCalendar VEVENT with time zone support and accurate recurring events generation.

15 lines 479 B
import { type ICEvent } from './icevent.js'; import { Interval } from 'luxon'; import { VEvent } from './vevent.js'; import './luxon-extensions.js'; export type iCalParserOptions = { withVEvent?: boolean; localTZ?: string; includeDTSTART?: boolean; }; export declare class ICalendarEvents { events: ICEvent[]; vevents: VEvent[]; constructor(data: string, dateRange?: Interval, options?: iCalParserOptions); } //# sourceMappingURL=icalendar-events.d.ts.map