| 60 | |
| 61 | // https://github.com/ryansolid/babel-plugin-jsx-dom-expressions#special-binding |
| 62 | interface CustomAttributes<T> { |
| 63 | ref?: T | ((el: T) => void); |
| 64 | classList?: { [k: string]: boolean | undefined }; |
| 65 | className?: string; |
| 66 | on?: { [key: string]: EventHandler<T, CustomEvent> }; |
| 67 | onCapture?: { [key: string]: EventHandler<T, CustomEvent> }; |
| 68 | |
| 69 | $name?: string; |
| 70 | $id?: string; |
| 71 | } |
| 72 | |
| 73 | // https://github.com/ryansolid/babel-plugin-jsx-dom-expressions#oneventname |
| 74 | interface DOMAttributes<T> extends CustomAttributes<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…