postcss-normalize-charset
Version:
Add necessary or remove extra charset with PostCSS
18 lines • 437 B
TypeScript
export = pluginCreator;
/**
* @typedef {{add?: 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 };
}
type Options = {
add?: boolean;
};
declare var postcss: true;
//# sourceMappingURL=index.d.ts.map