| 49 | export type TransformerOptions<T = any> = boolean | T | Transformer<T>; |
| 50 | |
| 51 | export interface Transformers { |
| 52 | babel?: TransformerOptions<Options.Babel>; |
| 53 | typescript?: TransformerOptions<Options.Typescript>; |
| 54 | scss?: TransformerOptions<Options.Sass>; |
| 55 | sass?: TransformerOptions<Options.Sass>; |
| 56 | less?: TransformerOptions<Options.Less>; |
| 57 | stylus?: TransformerOptions<Options.Stylus>; |
| 58 | postcss?: TransformerOptions<Options.Postcss>; |
| 59 | coffeescript?: TransformerOptions<Options.Coffeescript>; |
| 60 | pug?: TransformerOptions<Options.Pug>; |
| 61 | globalStyle?: Options.GlobalStyle; |
| 62 | replace?: Options.Replace; |
| 63 | [language: string]: TransformerOptions; |
| 64 | } |
| 65 | |
| 66 | export type AutoPreprocessGroup = PreprocessorGroup; |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected