Type alias ValidatorZod<TI, TPI>

ValidatorZod<TI, TPI>: {
    _input: TI;
    _output: TPI;
}

Represents a Zod validator with input and parsed output types.

Type Parameters

  • TI

    The expected input type.

  • TPI

    The parsed output type.

Type declaration