| 89 | * Used to associate DD configuration with DOM elements. |
| 90 | */ |
| 91 | export interface HTMLElementExtendOpt<T> { |
| 92 | /** The HTML element being extended */ |
| 93 | el: HTMLElement; |
| 94 | /** The drag & drop options/configuration */ |
| 95 | option: T; |
| 96 | /** Method to update the options and return the DD implementation */ |
| 97 | updateOption(T): DDBaseImplement; |
| 98 | } |
no outgoing calls
no test coverage detected