(cssFileName: string)
| 160 | } |
| 161 | |
| 162 | public changeCssFile(cssFileName: string): void { |
| 163 | const scope = this._styleScope; |
| 164 | if (scope && cssFileName) { |
| 165 | scope.changeCssFile(cssFileName); |
| 166 | this._onCssStateChange(); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | public _updateStyleScope(cssFileName?: string, cssString?: string, css?: string): void { |
| 171 | let scope = this._styleScope; |
nothing calls this directly
no test coverage detected