File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
- Handle variable colors that have variable fallback values ([ #12049 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12049 ) )
21
21
- Batch reading content files to prevent ` too many open files ` error ([ #12079 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12079 ) )
22
22
- Skip over classes inside ` :not(…) ` when nested in an at-rule ([ #12105 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12105 ) )
23
+ - Update types to work with ` Node16 ` module resolution ([ #12097 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12097 ) )
23
24
24
25
### Added
25
26
Original file line number Diff line number Diff line change 1
- import { PluginCreator } from 'postcss'
1
+ import type { PluginCreator } from 'postcss'
2
2
import type { Config } from './config.d'
3
3
4
4
declare const plugin : PluginCreator < string | Config | { config : string | Config } >
5
5
6
- export { Config }
7
- export default plugin
6
+ declare type _Config = Config
7
+ declare namespace plugin {
8
+ export type { _Config as Config }
9
+ }
10
+
11
+ export = plugin
You can’t perform that action at this time.
0 commit comments