UNPKG

tailwindcss

Version:

A utility-first CSS framework for rapidly building custom user interfaces.

12 lines (8 loc) 283 B
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