import { ICollection } from './ICollection';
import { IReadonlyList } from './IReadonlyList';
export interface IList<T> extends IReadonlyList<T>, ICollection<T> {
}
