import { VertexFactory } from "./util/vertex.js"; import { Interval } from "./properties/intervals.js"; import { Domain } from "./properties/domain.js"; import { Moment } from "moment"; //#region src/core/interfaces/vertices/periods.d.ts type PeriodVertex = VertexFactory<'periods', Domain & { ranges: Interval[]; displayIndex?: number; inline?: boolean; }>; //#endregion export { PeriodVertex }; //# sourceMappingURL=periods.d.ts.map