index.d.ts 180 B

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