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/root-intervals.d.ts type RootIntervalVertex = VertexFactory<'rootIntervals', Domain & { intervals: Interval[]; }>; //#endregion export { RootIntervalVertex }; //# sourceMappingURL=root-intervals.d.ts.map