//#region src/SchoolSoft/file/types/events.d.ts type Time = `${number}${number}${number}${number}`; type Day = 'Mån' | 'Tis' | 'Ons' | 'Tor' | 'Fre' | 'Lör' | 'Sön'; interface Event { id?: string; group?: string; groupid?: string; dayid?: number; day?: Day; starttime?: Time; length?: number; externalref?: string; teacher?: string; teacherid?: string; subject?: string; room?: string; roomid?: string; period?: string; experiod?: string; inweek?: string; exweek?: string; exclass?: 0 | 1; realweeks?: string; } //#endregion export { Event }; //# sourceMappingURL=events.d.ts.map