Type Alias OutputTypeOfTupleWithRest<T, Rest>

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

Type Parameters