import { Location } from "./location.js"; import { Teacher } from "./teacher.js"; import { Group } from "./group.js"; import { Lesson } from "./lesson.js"; import { Person } from "./persons.js"; //#region src/SchoolSoft/api/types/schedule.d.ts type Schedule = { locations: Location[]; teachers: Teacher[]; groups: Group[]; lessons: Lesson[]; persons: Person[]; }; //#endregion export { Schedule }; //# sourceMappingURL=schedule.d.ts.map