tailwindcss/types/index.d.ts
Jordan Pittman bbe3fca424 Update types to work with Node16 module resolution (#12097)
* Update types to work with Node16 module resolution

* Update changelog
2023-10-23 15:38:23 -04:00

12 lines
283 B
TypeScript

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