index.d.ts 163 B

123456
  1. import type { PluginCreator } from 'postcss';
  2. declare const creator: PluginCreator<{
  3. preserve?: boolean;
  4. replaceWith?: string;
  5. }>;
  6. export default creator;