| 40 | |
| 41 | // CSS Collection for external stylesheet or styled-components |
| 42 | interface 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 | |
| 51 | export let cssCollection: CSSCollection = {}; |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected