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

z.StandardSchemaV1.Issue

The issue interface of the failure output.

interface Issue {
readonly message: string;
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
}

§Properties

§
readonly message: string
[src]

The error message of the issue.

§
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined
[src]

The path of the issue, if any.