We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4da62c8 commit 4feef9aCopy full SHA for 4feef9a
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 ([#284](https://github.com/tailwindlabs/tailwindcss-typography/pull/284/files))
13
14
## [0.5.6] - 2022-09-01
15
src/index.d.ts
@@ -1,2 +1,9 @@
1
-declare function plugin(options?: { className?: string, target?: 'modern' | 'legacy' }): Function
+declare function plugin(options?: Partial<{ className: string; target: 'modern' | 'legacy' }>): {
2
+ handler: () => void
3
+}
4
5
+declare namespace plugin {
6
+ const __isOptionsFunction: true
export = plugin
0 commit comments