@silverbirder/caat
Version:
CaAT is the Google Apps Script Library that Calculate the Assigned Time.
24 lines (23 loc) • 761 B
TypeScript
import ICalendarApp, { ICalendar, ICalendarEvent, ICalendarSet } from "./ICalendarApp";
export default class CalendarAppMock implements ICalendarApp {
calendars?: Array<ICalendarSet>;
getCalendarById(id: string): ICalendar;
}
export declare class CalendarMock implements ICalendar {
calendarEvent?: Array<ICalendarEvent>;
getEvents(startTime: Date, endTime: Date): Array<ICalendarEvent>;
}
export declare class CalendarEventMock implements ICalendarEvent {
description?: string;
endTime?: any;
isAllDay?: boolean;
myStatus?: any;
startTime?: any;
title?: string;
getDescription(): string;
getEndTime(): any;
getMyStatus(): any;
getStartTime(): any;
getTitle(): string;
isAllDayEvent(): boolean;
}