bupkis
    Preparing search index...

    Interface $ZodFunctionDef<In, Out>

    interface $ZodFunctionDef<
        In extends $ZodFunctionIn = $ZodFunctionIn,
        Out extends $ZodFunctionOut = $ZodFunctionOut,
    > {
        type: "function";
        input: In;
        output: Out;
        error?: $ZodErrorMap<never>;
        checks?: z.core.$ZodCheck<never>[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    type: "function"
    input: In
    output: Out
    error?: $ZodErrorMap<never>
    checks?: z.core.$ZodCheck<never>[]