import { VertexFactory } from "./util/vertex.js"; import { User } from "../other/users.js"; import { Domain } from "./properties/domain.js"; import { Moment } from "moment"; //#region src/core/interfaces/vertices/generations.d.ts type Status = 'PENDING' | 'STARTED' | 'COMPLETED' | 'FAILED' | 'CANCELED'; type GenerationVertex = VertexFactory<'generations', Domain & { createdAt?: string; startedBy?: User; completionDate?: string | Moment; startDate?: string | Moment; configurationId: number; status: Status; error?: string | Error; progress: number; canceled: boolean; }>; //#endregion export { GenerationVertex }; //# sourceMappingURL=generations.d.ts.map