(cssText: string)
| 2 | import type {ParsedAtRule, ParsedCSS, ParsedDeclaration, ParsedStyleRule} from '../css-text/parse-css'; |
| 3 | |
| 4 | export function formatCSS(cssText: string): string { |
| 5 | const parsed = parseCSS(cssText); |
| 6 | return formatParsedCSS(parsed); |
| 7 | } |
| 8 | |
| 9 | export function formatParsedCSS(parsed: ParsedCSS): string { |
| 10 | const lines: string[] = []; |
no test coverage detected