Interface Types<Input, Output>

The Standard Schema types interface.

interface Types<Input, Output> {
    input: Input;
    output: Output;
}

Type Parameters

  • Input = unknown
  • Output = Input

Properties

Properties

input: Input

The input type of the schema.

output: Output

The output type of the schema.