terra-draw 0.0.1-alpha.47 → 0.0.1-alpha.48

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.
@@ -27,9 +27,11 @@ export declare class TerraDrawFreehandMode extends TerraDrawBaseDrawMode<Freehan
27
27
  private minDistance;
28
28
  private keyEvents;
29
29
  private cursors;
30
+ private preventPointsNearClose;
30
31
  constructor(options?: {
31
32
  styles?: Partial<FreehandPolygonStyling>;
32
33
  minDistance?: number;
34
+ preventPointsNearClose?: boolean;
33
35
  keyEvents?: TerraDrawFreehandModeKeyEvents | null;
34
36
  cursors?: Cursors;
35
37
  });