| 40 | } |
| 41 | |
| 42 | export interface BlocksEventProps { |
| 43 | blocks: Block[]; |
| 44 | container: HTMLElement; |
| 45 | dragStart: (block: Block, ev?: Event) => void; |
| 46 | drag: (ev: Event) => void; |
| 47 | dragStop: (cancel?: boolean) => void; |
| 48 | } |
| 49 | |
| 50 | export type MapCategoryBlocks = Map<string, Block[]>; |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected