UNPKG

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