| 399 | export type ToolType = "select"; |
| 400 | |
| 401 | export interface TextAnnotation { |
| 402 | type: "text"; |
| 403 | id: string; |
| 404 | position: { x: number; y: number }; |
| 405 | content: string; |
| 406 | fontSize: number; |
| 407 | color: string; |
| 408 | targetComponent: ComponentRef | null; |
| 409 | } |
| 410 | |
| 411 | export interface ColorOverride { |
| 412 | type: "colorChange"; |
nothing calls this directly
no outgoing calls
no test coverage detected