index.d.ts 287 B

123456789
  1. import type { PluginCreator } from 'postcss';
  2. declare type pluginOptions = {
  3. preserve?: boolean;
  4. onComplexSelector?: 'warning';
  5. onPseudoElement?: 'warning';
  6. specificityMatchingName?: string;
  7. };
  8. declare const creator: PluginCreator<pluginOptions>;
  9. export default creator;