Skip to content

_TupleOf

Algorand TypeScript


Algorand TypeScript / index / <internal> / _TupleOf

_TupleOf<T, N, R> = R["length"] extends N ? R : _TupleOf<T, N, readonly [T, ...R]>

Defined in: primitives.ts:366

T

N extends number

R extends readonly unknown[]