Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StandardSchemaV1.Types

The Standard Schema types interface.

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

§Type Parameters

§
Input = unknown
[src]
§
Output = Input
[src]

§Properties

§
readonly input: Input
[src]

The input type of the schema.

§
readonly output: Output
[src]

The output type of the schema.