med-notes/.pnpm-store/v10/files/5c/6057181339d52ba4c4ecaced8110dee4a0a9f4481c918ebd8501fa079176c266458a8c356412410df9b80c3529d084a3642cd9b23f7ae859d594ed59d6aa54
2025-05-09 05:30:08 +02:00

15 lines
401 B
Plaintext

export class Outline {
/**
* @returns {string} The SVG path of the outline.
*/
toSVGPath(): string;
/**
* @type {Object|null} The bounding box of the outline.
*/
get box(): Object | null;
serialize(_bbox: any, _rotation: any): void;
get classNamesForDrawing(): void;
get classNamesForOutlining(): void;
get mustRemoveSelfIntersections(): boolean;
}