Stone.js API
    Preparing search index...

    Interface StandardSchemaV1<Output>

    Minimal shape of the Standard Schema v1 contract — implemented by Zod 3.24+, Valibot, ArkType and others. Only the synchronous path is consumed here.

    interface StandardSchemaV1<Output = unknown> {
        "~standard": {
            validate: (
                value: unknown,
            ) => StandardResult<Output> | Promise<StandardResult<Output>>;
            vendor: string;
            version: 1;
        };
    }

    Type Parameters

    • Output = unknown
    Index
    "~standard": {
        validate: (
            value: unknown,
        ) => StandardResult<Output> | Promise<StandardResult<Output>>;
        vendor: string;
        version: 1;
    }