Skip to content

Commit be40735

Browse files
Update packages/tailwindcss/src/compat/plugin-api.ts
Co-authored-by: Jordan Pittman <[email protected]>
1 parent b570aa0 commit be40735

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/tailwindcss/src/compat/plugin-api.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ import * as SelectorParser from './selector-parser'
1717

1818
export type Config = UserConfig
1919
export type PluginFn = (api: PluginAPI) => void
20-
export type PluginWithConfig = { handler: PluginFn; config?: UserConfig; reference?: boolean }
20+
export type PluginWithConfig = {
21+
handler: PluginFn;
22+
config?: UserConfig;
23+
24+
/** @internal */
25+
reference?: boolean
26+
}
2127
export type PluginWithOptions<T> = {
2228
(options?: T): PluginWithConfig
2329
__isOptionsFunction: true

0 commit comments

Comments
 (0)