Stone.js API
    Preparing search index...

    Interface StandardResult<Output>

    A Standard Schema validation result.

    interface StandardResult<Output> {
        issues?: readonly {
            message: string;
            path?: readonly (PropertyKey | { key: PropertyKey })[];
        }[];
        value?: Output;
    }

    Type Parameters

    • Output
    Index
    issues?: readonly {
        message: string;
        path?: readonly (PropertyKey | { key: PropertyKey })[];
    }[]
    value?: Output