import { FromEvent, ToEvent } from "./events.js"; import { Course } from "./courses.js"; import { Location } from "./locations.js"; import { Group } from "./groups.js"; import { Teacher } from "./teachers.js"; import { Schedule } from "./schedules.js"; //#region src/IdunSoft/types/index.d.ts declare namespace Types { type toEvent = ToEvent; type fromEvent = FromEvent; type course = Course; type location = Location; type group = Group; type teacher = Teacher; type schedule = Schedule; } //#endregion export { Types }; //# sourceMappingURL=index.d.ts.map