index.d.ts 353 B

1234567891011
  1. import type { PluginCreator } from 'postcss';
  2. declare type pluginOptions = {
  3. enableProgressiveCustomProperties?: boolean;
  4. preserve?: boolean;
  5. subFeatures?: {
  6. displayP3?: boolean;
  7. };
  8. };
  9. /** Transform oklab() and oklch() functions in CSS. */
  10. declare const postcssPlugin: PluginCreator<pluginOptions>;
  11. export default postcssPlugin;