import { BaseOptions } from "../../common/types.js"; import { SchoolYear } from "./school-years.js"; import { Hour } from "./hours.js"; import { Lesson } from "./lessons.js"; import { SubstitutionPlan } from "./substitution-plans.js"; import { Class } from "./classes.js"; import { Teacher } from "./teachers.js"; import { Subject } from "./subjects.js"; import { Room } from "./rooms.js"; import { Course } from "./courses.js"; import { Holiday } from "./holidays.js"; import { Schedule } from "./schedules.js"; //#region src/sdui/types/index.d.ts declare namespace Types { type schedule = Schedule; type hour = Hour; type substitutionPlan = SubstitutionPlan; type classes = Class; type teacher = Teacher; type subject = Subject; type room = Room; type course = Course; type lesson = Lesson; type holiday = Holiday; type schoolYear = SchoolYear; type options = BaseOptions; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map