(classes: string[])
| 144 | } |
| 145 | |
| 146 | function candidatesToCss(classes: string[]): (string | null)[] { |
| 147 | return candidatesToAst(classes).map((nodes) => { |
| 148 | return nodes.length > 0 ? toCss(nodes) : null |
| 149 | }) |
| 150 | } |
| 151 | |
| 152 | let designSystem: DesignSystem = { |
| 153 | theme, |
nothing calls this directly
no test coverage detected