@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface StandardSchemaResult<T>

    Result shape Standard Schema validators return.

    The optional members carry an explicit | undefined: under exactOptionalPropertyTypes a schema whose own type declares path?: ... | undefined (as the spec's does) is otherwise not assignable here, which would reject exactly the third-party schemas this is meant to accept. Path segments stay unknown: the spec allows a raw key or an object carrying one, and this layer never inspects them.

    interface StandardSchemaResult<T> {
        issues?: readonly { message: string; path?: readonly unknown[] }[];
        value?: T;
    }

    Type Parameters

    • T
    Index
    issues?: readonly { message: string; path?: readonly unknown[] }[]
    value?: T