mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Make `Config` completely optional for plugins Right now the `Config` type requires a `content` key. However, for plugins, this should be completely optional. There’s little reason for a plugin to override content. All other keys are already optional by virtue of using `Partial<…>` so we’ll do the same for the `Config` type used by plugins. * Update changelog
12 lines
439 B
TypeScript
12 lines
439 B
TypeScript
import type { Config, PluginCreator } from './types/config'
|
|
type Plugin = {
|
|
withOptions<T>(
|
|
plugin: (options: T) => PluginCreator,
|
|
config?: (options: T) => Partial<Config>
|
|
): { (options: T): { handler: PluginCreator; config?: Partial<Config> }; __isOptionsFunction: true }
|
|
(plugin: PluginCreator, config?: Partial<Config>): { handler: PluginCreator; config?: Partial<Config> }
|
|
}
|
|
|
|
declare const plugin: Plugin
|
|
export = plugin
|