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"; import { Schedule } from "./schedule.js"; //#region src/SchoolSoft/api/types/index.d.ts declare namespace Types { type location = Location; type teacher = Teacher; type group = Group; type lesson = Lesson; type person = Person; type schedule = Schedule; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map