postcss-discard-unused
Version:
Discard unused counter styles, keyframes and fonts.
19 lines • 585 B
TypeScript
export = pluginCreator;
/**@typedef {{fontFace?: boolean, counterStyle?: boolean, keyframes?: boolean, namespace?: boolean}} Options */
/**
* @type {import('postcss').PluginCreator<Options>}
* @param {Options} opts
* @return {import('postcss').Plugin}
*/
declare function pluginCreator(opts: Options): import("postcss").Plugin;
declare namespace pluginCreator {
export { postcss, Options };
}
declare var postcss: true;
type Options = {
fontFace?: boolean;
counterStyle?: boolean;
keyframes?: boolean;
namespace?: boolean;
};
//# sourceMappingURL=index.d.ts.map