import { CurveObject, ProfileObject, StdVector } from "../../dependencies/conway-geom/index.js"; /** * Represents a profile as cached canonically for extrusion/sweeps */ export interface CanonicalProfile { localID: number; curve?: CurveObject; holes?: StdVector; profiles?: CanonicalProfile[]; nativeProfile?: ProfileObject; } //# sourceMappingURL=canonical_profile.d.ts.map