@silverbirder/caat
Version:
CaAT is the Google Apps Script Library that Calculate the Assigned Time.
10 lines (9 loc) • 353 B
TypeScript
import IGroup, { IGroupConfig, IHoliday } from "./iGroup";
import ICalendarApp from "../calendar/ICalendarApp";
export default class GroupImpl implements IGroup {
id: string;
config: IGroupConfig;
calendarApp: ICalendarApp;
constructor(id: string, config?: IGroupConfig, calendar?: ICalendarApp);
fetchHolidays(): Array<IHoliday>;
}