mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 01:16:27 +01:00
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
|
declare module 'promise-any' {
|
||
|
function promiseAny<T>(iterable: Iterable<T | PromiseLike<T>>): Promise<T>;
|
||
|
|
||
|
namespace promiseAny {} // Hack
|
||
|
|
||
|
export = promiseAny;
|
||
|
}
|