| 5 | import type { ResizeHandler } from '@vexip-ui/hooks' |
| 6 | |
| 7 | export interface VResizeOptions { |
| 8 | handler: ResizeHandler, |
| 9 | throttle?: boolean | number, |
| 10 | disabled?: boolean |
| 11 | } |
| 12 | |
| 13 | interface ResizeRecord { |
| 14 | useThrottle: boolean | number, |
nothing calls this directly
no outgoing calls
no test coverage detected