Initial commit - Event Planner application
This commit is contained in:
10
node_modules/iterare/lib/map.d.ts
generated
vendored
Normal file
10
node_modules/iterare/lib/map.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* An iterator that emits results by running each element through a provided predicate
|
||||
*/
|
||||
export declare class MapIterator<T, R> implements Iterator<R> {
|
||||
private source;
|
||||
private iteratee;
|
||||
constructor(source: Iterator<T>, iteratee: (value: T) => R);
|
||||
next(): IteratorResult<R>;
|
||||
}
|
||||
//# sourceMappingURL=map.d.ts.map
|
||||
Reference in New Issue
Block a user