hashbrown

InferSchemaInput

Infers the input type for a schema-like value.

API

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