Skip to content

Commit

Permalink
chore: update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Jun 30, 2024
1 parent 59e3623 commit d91cc6e
Show file tree
Hide file tree
Showing 2 changed files with 582 additions and 87 deletions.
16 changes: 8 additions & 8 deletions test/valid-data/array-function-generics/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
"definitions": {
"arrayGenerics": {
"$comment": "(a: T[], b: T[]) => T[]",
"type": "object",
"properties": {
"namedArgs": {
"type": "object",
"additionalProperties": false,
"properties": {
"a": {
"type": "array",
"items": {}
"items": {},
"type": "array"
},
"b": {
"type": "array",
"items": {}
"items": {},
"type": "array"
}
},
"required": [
"a",
"b"
],
"additionalProperties": false
"type": "object"
}
}
},
"type": "object"
}
}
}
Loading

0 comments on commit d91cc6e

Please sign in to comment.