Skip to content

Type Alias: Schema

ts
type Schema =
  | AnySchema
  | StringSchema
  | BinarySchema
  | NumberSchema
  | BooleanSchema
  | ObjectSchema
  | ArraySchema
  | DateSchema;

Union type of all available Joi schema types