tailwindcss/types/index.d.ts
Jordan Pittman c44dd7b8e7
Fix postcss plugin type (#8564)
* Fix postcss plugin type

* Update changelog
2022-06-09 16:38:45 -04:00

8 lines
206 B
TypeScript

import { PluginCreator } from 'postcss'
import type { Config } from './config.d'
declare const plugin: PluginCreator<string | Config | { config: string | Config }>
export { Config }
export default plugin