my-idlers/node_modules/@vue/component-compiler-utils/dist/styleProcessors/index.d.ts

12 lines
305 B
TypeScript
Raw Normal View History

export interface StylePreprocessor {
render(source: string, map: any | null, options: any): StylePreprocessorResults;
}
export interface StylePreprocessorResults {
code: string;
map?: any;
errors: Array<Error>;
}
export declare const processors: {
[key: string]: StylePreprocessor;
};