You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
334 B
9 lines
334 B
export declare const IS_ITERATING_MARKER = "__$$iterating";
|
|
export interface Iterator<T> {
|
|
next(): {
|
|
done: boolean;
|
|
value?: T;
|
|
};
|
|
}
|
|
export declare function arrayAsIterator<T>(array: T[]): T[] & Iterator<T>;
|
|
export declare function declareIterator<T>(prototType: any, iteratorFactory: () => Iterator<T>): void;
|