File size: 221 Bytes
d110d16
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { PluginCreator } from 'postcss';

type PluginOptions = {
    base?: string;
    optimize?: boolean | {
        minify?: boolean;
    };
};
declare const _default: PluginCreator<PluginOptions>;

export = _default;