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

StandardSchemaV1.SuccessResult

The result interface if validation succeeds.

interface SuccessResult <Output> {
readonly issues?: undefined;
readonly value: Output;
}

§Type Parameters

§
Output
[src]

§Properties

§
readonly issues?: undefined
[src]

The non-existent issues.

§
readonly value: Output
[src]

The typed output value.