index.d.ts 191 B

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