/** * Helper type to add one to a number type. * * From: https://stackoverflow.com/questions/54243431/typescript-increment-number-type */ export type Increment = [...Arr, unknown]["length"] & number; type Arr = T["length"] extends N ? T : Arr; export {}; //# sourceMappingURL=Increment.d.ts.map