import { Room } from "./Room.js"; import { Teacher } from "./Teacher.js"; import { Group } from "./Group.js"; import { Plan } from "./Plan.js"; import { Course } from "./Course.js"; import { Lesson } from "./Lesson.js"; import { Schedule } from "./Schedule.js"; import { Options } from "./Options.js"; //#region src/Skola24/mdb/types/index.d.ts declare namespace Types { type schedule = Schedule; type course = Course; type group = Group; type plan = Plan; type lesson = Lesson; type room = Room; type teacher = Teacher; type options = Options; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map