//#region src/vKlass/types/index.d.ts type Staff = { ID: number; Firstname: string; Lastname: string; }; type Group = { ID: number; Name: string; FriendlyName: string; StartDate: string; EndDate: string; }; type Class = { ID: number; Name: string; }; type GroupStaffReference = { groupId: number; userId: number; }; type GroupStudentReference = { groupId: number; userId: number; }; type ClassStudentReference = { classId: number; userId: number; }; type Schedule = { staff: Staff[]; groups: Group[]; classes: Class[]; groups_staff: GroupStaffReference[]; groups_students: GroupStudentReference[]; classes_students: ClassStudentReference[]; }; declare namespace Types { type staff = Staff; type group = Group; type _class = Class; type groupStaffReference = GroupStaffReference; type groupStudentReference = GroupStudentReference; type classStudentReference = ClassStudentReference; type schedule = Schedule; type Options = { beg: string; end: string; }; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map