Skip to content

Type Alias: SchemaLikeWithoutArray

ts
type SchemaLikeWithoutArray =
  | string
  | number
  | boolean
  | null
  | Schema
  | SchemaMap;