| 21 | } |
| 22 | |
| 23 | export interface SassStringCompiler { |
| 24 | compileStringAsync: ( |
| 25 | source: string, |
| 26 | options: Record<string, any>, |
| 27 | ) => Promise<{ css: string; loadedUrls: URL[] }> |
| 28 | } |
| 29 | |
| 30 | export interface SassCompiler extends SassStringCompiler { |
| 31 | dispose?: () => void | Promise<void> |
nothing calls this directly
no outgoing calls
no test coverage detected