Skip to content

Commit 3973cc0

Browse files
committed
fix typing error
1 parent 66073cb commit 3973cc0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# extract-react-types
2+
3+
## v0.13.1
4+
5+
- Fix incorrect typing
6+
- Add Changelog

kinds.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type Func = {
115115
id?: Id | null,
116116
async?: boolean,
117117
generator?: boolean,
118-
parameters: Param,
118+
parameters: Array<Param>,
119119
returnType: AnyTypeKind | null
120120
};
121121
export type Union = { kind: "union", types: Array<AnyTypeKind> };

0 commit comments

Comments
 (0)