MCPcopy Index your code
hub / github.com/bernaferrari/FigmaToCode / CSSCollection

Interface CSSCollection

packages/backend/src/html/htmlMain.ts:42–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40
41// CSS Collection for external stylesheet or styled-components
42interface CSSCollection {
43 [className: string]: {
44 styles: string[];
45 nodeType?: string;
46 element?: string; // Base HTML element to use
47 componentName: string; // Required for type safety, only used in styled-components mode
48 };
49}
50
51export let cssCollection: CSSCollection = {};
52

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected