import type GraphObject from "./GraphObject.js"; import type Path from "./Path.js"; import type { GeometryUnion } from "../../geometry/types.js"; /** @since 5.0 */ export type GraphAnyValue = Path | GraphObject | GeometryUnion | Date | string | number | GraphAnyValue[] | null | undefined;