mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2026-02-01 17:26:34 +00:00
8 lines
206 B
TypeScript
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
|