mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-03-29 22:38:33 +08:00
Fix angularjs/angular; 'export declare'/'declare export'
This commit is contained in:
4
node-array-ext/node-array-ext.d.ts
vendored
4
node-array-ext/node-array-ext.d.ts
vendored
@@ -8,9 +8,9 @@
|
||||
* Processes each of the elements in the array and triggers a callback once every element has been processed.
|
||||
* - note that the elements are called in order but are not guaranteed to finish in order.
|
||||
*/
|
||||
declare export function asyncEach<T>(array: Array<T>, each: (i: number, element: T, done: (err?: Error) => void) => void, finish: (err?: Error) => void): void;
|
||||
export declare function asyncEach<T>(array: Array<T>, each: (i: number, element: T, done: (err?: Error) => void) => void, finish: (err?: Error) => void): void;
|
||||
/**
|
||||
* Processes each of the elements in the array and triggers a callback once every element has been processed.
|
||||
* - note that the elements are called in order and are guaranteed to finish in order.
|
||||
*/
|
||||
declare export function awaitEach<T>(array: Array<T>, each: (i: number, element: T, done: (err?: Error) => void) => void, finish: (err?: Error) => void): void;
|
||||
export declare function awaitEach<T>(array: Array<T>, each: (i: number, element: T, done: (err?: Error) => void) => void, finish: (err?: Error) => void): void;
|
||||
|
||||
Reference in New Issue
Block a user