@contember/echo 0.0.18 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ import type { DrawingTool } from '~/types';
2
2
  interface ToolConfig {
3
3
  id: DrawingTool;
4
4
  label: string;
5
- cursor: string;
5
+ getCursor: (color: string) => string;
6
6
  strokeWidth: {
7
7
  active: number;
8
8
  normal: number;
@@ -14,5 +14,5 @@ interface ToolConfig {
14
14
  };
15
15
  hysteresis?: number;
16
16
  }
17
- export declare const drawingConfig: Record<DrawingTool, ToolConfig>;
17
+ export declare const toolConfig: Record<DrawingTool, ToolConfig>;
18
18
  export {};