UNPKG

706 BTypeScriptView Raw
1export = pluginCreator;
2/** @typedef {{removeAfterKeyword?: boolean, removeDuplicates?: boolean, removeQuotes?: boolean | ((prop: string) => '' | 'font' | 'font-family' | 'font-weight')}} Options */
3/**
4 * @type {import('postcss').PluginCreator<Options>}
5 * @param {Options} opts
6 * @return {import('postcss').Plugin}
7 */
8declare function pluginCreator(opts: Options): import('postcss').Plugin;
9declare namespace pluginCreator {
10 export { postcss, Options };
11}
12type Options = {
13 removeAfterKeyword?: boolean;
14 removeDuplicates?: boolean;
15 removeQuotes?: boolean | ((prop: string) => '' | 'font' | 'font-family' | 'font-weight');
16};
17declare var postcss: true;
18//# sourceMappingURL=index.d.ts.map
\No newline at end of file