first
This commit is contained in:
11
node_modules/@vue/component-compiler-utils/dist/styleProcessors/index.d.ts
generated
vendored
Normal file
11
node_modules/@vue/component-compiler-utils/dist/styleProcessors/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
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;
|
||||
};
|
Reference in New Issue
Block a user