index.d.ts 298 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import type { PluginCreator } from 'postcss'; declare type pluginOptions = { enableProgressiveCustomProperties?: boolean; preserve?: boolean; subFeatures?: { displayP3?: boolean; }; }; declare const postcssPlugin: PluginCreator<pluginOptions>; export default postcssPlugin;