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 66073cb commit 3973cc0Copy full SHA for 3973cc0
CHANGELOG.md
@@ -0,0 +1,6 @@
1
+# extract-react-types
2
+
3
+## v0.13.1
4
5
+- Fix incorrect typing
6
+- Add Changelog
kinds.js
@@ -115,7 +115,7 @@ export type Func = {
115
id?: Id | null,
116
async?: boolean,
117
generator?: boolean,
118
- parameters: Param,
+ parameters: Array<Param>,
119
returnType: AnyTypeKind | null
120
};
121
export type Union = { kind: "union", types: Array<AnyTypeKind> };
0 commit comments