| OLD | NEW |
| (Empty) | |
| 1 /** @typedef {{ |
| 2 * styleElement: function(!HTMLElement), |
| 3 * styleSubtree: function(!HTMLElement, Object<string, string>=), |
| 4 * prepareTemplate: function(!HTMLTemplateElement, string, string=), |
| 5 * styleDocument: function(Object<string, string>=), |
| 6 * getComputedStyleValue: function(!Element, string): string, |
| 7 * ScopingShim: (Object|undefined), |
| 8 * ApplyShim: (Object|undefined), |
| 9 * CustomStyleInterface: (Object|undefined), |
| 10 * nativeCss: boolean, |
| 11 * nativeShadow: boolean, |
| 12 * }} |
| 13 */ |
| 14 let ShadyCSSInterface; //eslint-disable-line no-unused-vars |
| 15 |
| 16 /** |
| 17 * @typedef {{ |
| 18 * shimcssproperties: (boolean | undefined), |
| 19 * shimshadow: (boolean | undefined) |
| 20 * }} |
| 21 */ |
| 22 let ShadyCSSOptions; //eslint-disable-line no-unused-vars |
| 23 |
| 24 /** @type {(ShadyCSSInterface | ShadyCSSOptions | undefined)} */ |
| 25 window.ShadyCSS; |
| OLD | NEW |