(strings: TemplateStringsArray | Class, ...interpolations: Class[])
| 28 | export function cx(...input: Class[]): string |
| 29 | |
| 30 | export function cx(strings: TemplateStringsArray | Class, ...interpolations: Class[]): string { |
| 31 | return format(parse(interpolate(strings, interpolations)), ' ') |
| 32 | } |
no test coverage detected