mini-effect
    Preparing search index...

    Interface StandardProps<TInput$1, TOutput$1>

    The Standard Schema properties interface.

    interface StandardProps<TInput$1, TOutput$1> {
        types?: StandardTypes<TInput$1, TOutput$1>;
        validate: (
            value: unknown,
        ) => StandardResult<TOutput$1> | Promise<StandardResult<TOutput$1>>;
        vendor: "valibot";
        version: 1;
    }

    Type Parameters

    • TInput$1
    • TOutput$1
    Index

    Properties

    types?: StandardTypes<TInput$1, TOutput$1>

    Inferred types associated with the schema.

    validate: (
        value: unknown,
    ) => StandardResult<TOutput$1> | Promise<StandardResult<TOutput$1>>

    Validates unknown input values.

    vendor: "valibot"

    The vendor name of the schema library.

    version: 1

    The version number of the standard.