mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 07:53:08 +02:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
declare module 'promise-any' {
|
|
function promiseAny<T>(iterable: Iterable<T | PromiseLike<T>>): Promise<T>;
|
|
|
|
namespace promiseAny {} // Hack
|
|
|
|
export = promiseAny;
|
|
}
|