Skip to content

Commit

Permalink
Fix empty array implicit any type
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxouwell committed Feb 19, 2024
1 parent 4828df1 commit e15357a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const data = [
},
];

const emptyData = [];
const emptyData: any[] = [];
const schema: JsonSchema7 = {
type: 'array',
items: {
Expand Down

0 comments on commit e15357a

Please sign in to comment.