| 1 | import type { SlickGridModel } from './slickGridModel.interface.js'; |
| 2 | |
| 3 | export interface SlickPlugin { |
| 4 | pluginName: string; |
| 5 | init: (grid: SlickGridModel) => void; |
| 6 | destroy: () => void; |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected