UNPKG

postcss-minify-selectors

Version:

Minify selectors with PostCSS.

18 lines 471 B
export = pluginCreator; /** @typedef {object} Options * @property {boolean} [sort=true] */ /** * @type {import('postcss').PluginCreator<void>} * @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 = { sort?: boolean | undefined; }; //# sourceMappingURL=index.d.ts.map