mini-effect
    Preparing search index...

    Interface BigintSchema<TMessage>

    Bigint schema interface.

    interface BigintSchema<TMessage extends ErrorMessage<BigintIssue> | undefined> {
        "~run": (
            dataset: UnknownDataset,
            config: Config<BaseIssue<unknown>>,
        ) => OutputDataset<bigint, BigintIssue>;
        "~standard": StandardProps<bigint, bigint>;
        "~types"?: { input: bigint; issue: BigintIssue; output: bigint };
        async: false;
        expects: "bigint";
        kind: "schema";
        message: TMessage;
        reference: {
            (): BigintSchema<undefined>;
            <const TMessage extends ErrorMessage<BigintIssue> | undefined>(
                message: TMessage,
            ): BigintSchema<TMessage>;
        };
        type: "bigint";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    "~run": (
        dataset: UnknownDataset,
        config: Config<BaseIssue<unknown>>,
    ) => OutputDataset<bigint, BigintIssue>

    Parses unknown input values.

    Type Declaration

    "~standard": StandardProps<bigint, bigint>

    The Standard Schema properties.

    "~types"?: { input: bigint; issue: BigintIssue; output: bigint }

    The input, output and issue type.

    async: false

    Whether it's async.

    expects: "bigint"

    The expected property.

    kind: "schema"

    The object kind.

    message: TMessage

    The error message.

    reference: {
        (): BigintSchema<undefined>;
        <const TMessage extends ErrorMessage<BigintIssue> | undefined>(
            message: TMessage,
        ): BigintSchema<TMessage>;
    }

    The schema reference.

    Type Declaration

    type: "bigint"

    The schema type.