index.d.ts 212 B

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