hashbrown

InferSchemaOutput

Infers the output type for a schema-like value.

API

export type InferSchemaOutput<Schema> =
  Schema extends  HashbrownType 
    ?  Infer <Schema>
    : Schema extends  StandardJSONSchemaV1 
      ?  StandardJSONSchemaV1.InferOutput <Schema>
      : unknown;
InferSchemaOutput
@typeSchema