| 3 | import { createJSONStorage, persist } from "zustand/middleware"; |
| 4 | |
| 5 | export interface PenProperties { |
| 6 | stroke: string; |
| 7 | strokeWidth: number; |
| 8 | opacity: number; |
| 9 | } |
| 10 | |
| 11 | export interface EraserProperties { |
| 12 | strokeWidth: number; |
nothing calls this directly
no outgoing calls
no test coverage detected