fix: handle array item type error in struct output (#18452)

This commit is contained in:
Joel
2025-04-21 14:15:38 +08:00
committed by GitHub
parent 0ba37592f7
commit 5d9c67e97e
2 changed files with 22 additions and 4 deletions

View File

@@ -25,6 +25,9 @@ export enum Type {
boolean = 'boolean',
object = 'object',
array = 'array',
arrayString = 'array[string]',
arrayNumber = 'array[number]',
arrayObject = 'array[object]',
}
export enum ArrayType {