//#region src/Schoolity/txt/types/index.d.ts type Room = { Room: string; GUID: string; Category: string; SeatingCapacity: string; }; type Subject = { Subject: string; GUID: string; Category: string; FullText: string; BackgroundColor: string; TextColor: string; EvaluationNumber: string; }; type Teacher = { Teacher: string; GUID: string; Category: string; PersonalCode: string; LastName: string; Title: string; FirstName: string; Phone: string; EMail: string; EvaluationNumber: string; }; type Group = { Group: string; GUID: string; Class: string; Teacher: string; IClass: string; Student: string; }; type Course = { Course: string; GUID: string; FullText: string; Subject: string; Points: string; }; type PeriodGeneral = { SchoolYear: string; }; type Period = { Period: string; GUID: string; TextBelowSchedule: string; Category: string; Calendar: string; }; type TA = { PK: string; GUID: string; OriginalRecord: string; CreateLesson: string; Course: string; Subject: string; Teacher: string; Group: string; TotalHours: string; Weektime: string; Blockname: string; Period: string; Week: string; NotPeriod: string; NotWeek: string; }; type Lesson = { PK: string; GUID: string; DayOfWeek: string; Starttime: string; Length: string; Course: string; Subject: string; Teacher: string; Group: string; Room: string; Period: string; Week: string; ActualWeeks: string; }; type Student = { Student: string; GUID: string; Category: string; PersonalCode: string; LastName: string; FirstName: string; EMail: string; }; type ErrorType = { 'lesson.invalid_day': Lesson; 'period.problem_parsing_range': Period; 'calendarExceptions.problem_parsing_range': PeriodGeneral; 'ignoring_lessons_missing_course': { count: number; }; }; type ErrorCode = keyof ErrorType; declare namespace Types { type room = Room; type subject = Subject; type teacher = Teacher; type group = Group; type course = Course; type periodGeneral = PeriodGeneral; type period = Period; type ta = TA; type lesson = Lesson; type student = Student; type errorCode = ErrorCode; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map