File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212- Fix candidate extractor regression ([ #8558 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8558 ) )
1313- Split `::backdrop`` into separate defaults group ([ #8567 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8567 ) )
14+ - Fix postcss plugin type ([ #8564 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8564 ) )
1415
1516## [ 3.1.0] - 2022-06-08
1617
Original file line number Diff line number Diff line change 1- export type { Config } from './config.d'
1+ import { PluginCreator } from 'postcss'
2+ import type { Config } from './config.d'
3+
4+ declare const plugin : PluginCreator < string | Config | { config : string | Config } >
5+
6+ export { Config }
7+ export default plugin
You can’t perform that action at this time.
0 commit comments