Type Alias OutputTypeOfTupleWithRest<T, Rest>

OutputTypeOfTupleWithRest: Rest extends z.ZodTypeAny
    ? [...z.OutputTypeOfTuple<T>, ...Rest["_output"][]]
    : z.OutputTypeOfTuple<T>

Type Parameters