index.d.ts 136 B

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