UNPKG

@thi.ng/api

Version:

Common, generic types, interfaces & mixins

8 lines 192 B
/** * Interface for collection types which can be accessed via numeric * index. */ export interface IIndexed<T> { nth(i: number, notfound: T): T; } //# sourceMappingURL=indexed.d.ts.map