index.d.ts 159 B

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