File size: 539 Bytes
5d14125 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import { PluginCreator } from 'postcss';
type PluginOptions = {
/**
* The base directory to scan for class candidates.
*
* Defaults to the current working directory.
*/
base?: string;
/**
* Optimize and minify the output CSS.
*/
optimize?: boolean | {
minify?: boolean;
};
/**
* Enable or disable asset URL rewriting.
*
* Defaults to `true`.
*/
transformAssetUrls?: boolean;
};
declare const _default: PluginCreator<PluginOptions>;
export = _default;
|