index.d.ts 283 B

123456789101112
  1. import type { PluginCreator } from 'postcss'
  2. import type { Config } from './config.d'
  3. declare const plugin: PluginCreator<string | Config | { config: string | Config }>
  4. declare type _Config = Config
  5. declare namespace plugin {
  6. export type { _Config as Config }
  7. }
  8. export = plugin