12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
declare const plugin: {
|
|
(options?: any): {
|
|
postcssPlugin: string;
|
|
prepare(result: any): {
|
|
Declaration(declaration: any): void;
|
|
OnceExit(): Promise<void>;
|
|
};
|
|
};
|
|
postcss: boolean;
|
|
};
|
|
export default plugin;
|