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 19e4dda commit ac7f9a7Copy full SHA for ac7f9a7
CHANGELOG.md
@@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
-- Nothing yet!
+### Fixed
11
+
12
+- Update TypeScript types ([#126](https://github.com/tailwindlabs/tailwindcss-forms/pull/126))
13
14
## [0.5.2] - 2022-05-18
15
src/index.d.ts
@@ -1,2 +1,7 @@
1
-declare function plugin(options?: { strategy?: 'base' | 'class' }): Function
+declare function plugin(options?: Partial<{ strategy: 'base' | 'class' }>): { handler: () => void }
2
3
+declare namespace plugin {
4
+ const __isOptionsFunction: true
5
+}
6
export = plugin
0 commit comments