import { School } from "./schools.js"; import { Room } from "./rooms.js"; import { PrimaryGroup } from "./primary-groups.js"; import { User } from "./users.js"; import { Course } from "./courses.js"; import { ScheduleGroup } from "./schedule-groups.js"; import { Lesson } from "./lessons.js"; import { Schedule } from "./schedules.js"; import { CourseSection } from "./course-sections.js"; import { Options } from "./options.js"; //#region src/Additio/types/index.d.ts declare namespace Types { type options = Options; type courseSection = CourseSection; type course = Course; type lesson = Lesson; type primaryGroup = PrimaryGroup; type room = Room; type scheduleGroup = ScheduleGroup; type schedule = Schedule; type school = School; type user = User; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map