| 21 | |
| 22 | // eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging -- FIXME |
| 23 | export class StyleSheet implements StyleSheet { |
| 24 | constructor(name: string, speedy = false) { |
| 25 | return isBrowser |
| 26 | ? new ClientStyleSheet(name, speedy) |
| 27 | : new ServerStyleSheet(name, speedy); |
| 28 | } |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected