replicad-pantograph 0.11.2 → 0.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,13 +2,13 @@ import { Diagram, Figure, Segment, Stroke, BoundingBox } from "pantograph2d/mode
2
2
  import * as drawShape from "pantograph2d/drawShape";
3
3
  import * as pantograph from "pantograph2d";
4
4
  import { fillet, DrawingPen } from "pantograph2d";
5
- import { Plane, Sketch, Edge, Sketches, CompoundSketch, Point, PlaneName, type SketchInterface } from "replicad";
5
+ import { Plane, Sketch, Sketches, CompoundSketch, Point, PlaneName, type SketchInterface } from "replicad";
6
6
  import type { Vector as Point2D } from "pantograph2d";
7
7
  type CornerFilter = Parameters<typeof fillet>[2];
8
- export declare function sketchSegment(segment: Segment, plane: Plane): Edge;
9
- export declare function sketchStroke(stroke: Stroke, plane: Plane): Sketch;
10
- export declare function sketchFigure(figure: Figure, plane: Plane): Sketch | CompoundSketch;
11
- export declare function sketchDiagram(diagram: Diagram, plane: Plane): Sketch | CompoundSketch | Sketches;
8
+ export declare function sketchSegment(segment: Segment, plane: Plane): any;
9
+ export declare function sketchStroke(stroke: Stroke, plane: Plane): any;
10
+ export declare function sketchFigure(figure: Figure, plane: Plane): any;
11
+ export declare function sketchDiagram(diagram: Diagram, plane: Plane): any;
12
12
  declare function sketchOnPlane(pantographObject: any, plane: Plane): Sketch | Sketches | CompoundSketch;
13
13
  declare function sketchOnPlane(pantographObject: any, plane: PlaneName, origin?: Point | number): Sketch | Sketches | CompoundSketch;
14
14
  declare function initStudioIntegration(): void;