We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b570aa0 commit be40735Copy full SHA for be40735
packages/tailwindcss/src/compat/plugin-api.ts
@@ -17,7 +17,13 @@ import * as SelectorParser from './selector-parser'
17
18
export type Config = UserConfig
19
export type PluginFn = (api: PluginAPI) => void
20
-export type PluginWithConfig = { handler: PluginFn; config?: UserConfig; reference?: boolean }
+export type PluginWithConfig = {
21
+ handler: PluginFn;
22
+ config?: UserConfig;
23
+
24
+ /** @internal */
25
+ reference?: boolean
26
+}
27
export type PluginWithOptions<T> = {
28
(options?: T): PluginWithConfig
29
__isOptionsFunction: true
0 commit comments