mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
|
|
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;
|
||
|
|
};
|