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