| 18 | import postcssModules from class="st">'postcss-modules' |
| 19 | |
| 20 | export interface SFCStyleCompileOptions { |
| 21 | source: string |
| 22 | filename: string |
| 23 | id: string |
| 24 | scoped?: boolean |
| 25 | trim?: boolean |
| 26 | isProd?: boolean |
| 27 | inMap?: RawSourceMap |
| 28 | preprocessLang?: PreprocessLang |
| 29 | preprocessOptions?: any |
| 30 | preprocessCustomRequire?: (id: string) => any |
| 31 | postcssOptions?: any |
| 32 | postcssPlugins?: any[] |
| 33 | /** |
| 34 | * @deprecated use `inMap` instead. |
| 35 | */ |
| 36 | map?: RawSourceMap |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Aligns with postcss-modules |
nothing calls this directly
no outgoing calls
no test coverage detected