UNPKG

@silverbirder/caat

Version:

CaAT is the Google Apps Script Library that Calculate the Assigned Time.

15 lines (14 loc) 366 B
export interface CCalendar { getEvents(startTime: Date, endTime: Date): Array<CCalendarEvent>; } export interface CCalendarEvent { getTitle(): any; getStartTime(): any; getEndTime(): any; getMyStatus(): any; getDescription(): any; isAllDayEvent(): any; } export default interface ICalendar { getCalendarById(id: string): CCalendar; }