MCPcopy
hub / github.com/kuma-ui/kuma-ui / StyleSheet

Class StyleSheet

packages/core/src/registry/sheet/StyleSheet.ts:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging -- FIXME
23export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected