index.d.ts 189 B

123456
  1. import type { PluginCreator } from 'postcss';
  2. /** Transform hwb() functions in CSS. */
  3. declare const postcssPlugin: PluginCreator<{
  4. preserve: boolean;
  5. }>;
  6. export default postcssPlugin;