6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
import type { CalendarEvent } from "./calendar-types";
|
|
|
|
export interface ICalendarIntegration {
|
|
getCalendarEventsAsync(start: Date, end: Date, includeUnmonitored: boolean): Promise<CalendarEvent[]>;
|
|
}
|