(value: unknown)
| 58 | } |
| 59 | |
| 60 | function isArrayType(value: unknown): value is { type: 'array'; items?: unknown } { |
| 61 | return asSchemaNode(value)?.type === 'array' |
| 62 | } |
| 63 | |
| 64 | function getArrayItems(schema: unknown): unknown { |
| 65 | return asSchemaNode(schema)?.items |
no test coverage detected