import { VertexFactory } from "./util/vertex.js"; import { EdgeWrapper, Plain } from "./util/edges.js"; import { DateType, Partner } from "../other/etc.js"; import { DivisionSettingsVertex } from "./division-settings.js"; import { GenerationVertex } from "./generations.js"; //#region src/core/interfaces/vertices/divisions.d.ts type StepGuideProgress = { checked: string[]; completed: boolean; updatedAt: Date | null; }; type DivisionVertex = VertexFactory<'divisions', { associatedPartner?: Partner | null; start: DateType; end: DateType; published?: boolean; createdAt?: string; updatedAt?: string; syncedAt?: string | number | Date; selected?: boolean; autoSync?: boolean; stepGuideProgress?: StepGuideProgress; pinned?: boolean; settings?: null | EdgeWrapper<'single', Plain.Edge>; running?: null | EdgeWrapper<'single', Plain.Edge>; }>; //#endregion export { DivisionVertex, StepGuideProgress }; //# sourceMappingURL=divisions.d.ts.map