(cssText: string)
| 68 | |
| 69 | // Handle custom CSS events |
| 70 | export function handleCustomCss(cssText: string): void { |
| 71 | if (typeof cssText === 'string' && cssText.length) { |
| 72 | applyCssText(cssText); |
| 73 | } |
| 74 | } |
nothing calls this directly
no test coverage detected