UNPKG

192 BTypeScriptView Raw
1/**
2 * Interface for collection types which can be accessed via numeric
3 * index.
4 */
5export interface IIndexed<T> {
6 nth(i: number, notfound: T): T;
7}
8//# sourceMappingURL=indexed.d.ts.map
\No newline at end of file