| 49 | // We declare variables used on the window object |
| 50 | // We use a custom interface to avoid these modifying the global Window type in other files |
| 51 | interface CustomWindow extends Window { |
| 52 | // This comes from MDL lite and is used to upgrade the DOM after we have added new elements |
| 53 | componentHandler?: { |
| 54 | upgradeElements: (...element: Element[]) => void; |
| 55 | }; |
| 56 | } |
| 57 | |
| 58 | interface HTMLElementWithMaterialTextfield extends HTMLElement { |
| 59 | MaterialTextfield: { boundUpdateClassesHandler: () => void }; |
nothing calls this directly
no outgoing calls
no test coverage detected