Interface StandardTypes<TInput, TOutput>

The Standard Schema types interface.

interface StandardTypes<TInput, TOutput> {
    input: TInput;
    output: TOutput;
}

Type Parameters

  • TInput
  • TOutput

Properties

Properties

input: TInput

The input type of the schema.

output: TOutput

The output type of the schema.