index.d.ts 298 Bytes
import type { PluginCreator } from 'postcss';
declare type pluginOptions = {
    enableProgressiveCustomProperties?: boolean;
    preserve?: boolean;
    subFeatures?: {
        displayP3?: boolean;
    };
};
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;