(css: string, options: CompileOptions)
| 98 | } |
| 99 | |
| 100 | export async function compile(css: string, options: CompileOptions) { |
| 101 | let compiler = await _compile(css, createCompileOptions(options)) |
| 102 | await ensureSourceDetectionRootExists(compiler) |
| 103 | return compiler |
| 104 | } |
| 105 | |
| 106 | export async function __unstable__loadDesignSystem(css: string, { base }: { base: string }) { |
| 107 | return ___unstable__loadDesignSystem(css, { |
no test coverage detected