Type Alias InputTypeOfTupleWithRest<T, Rest>

InputTypeOfTupleWithRest: Rest extends Zod.z.ZodTypeAny
    ? [...Zod.z.InputTypeOfTuple<T>, ...Rest["_input"][]]
    : Zod.z.InputTypeOfTuple<T>

Type Parameters