import { IEnumerator } from "./IEnumerator"; export interface IEnumerable{ getEnumerator(): IEnumerator; } export default IEnumerable;