declare module 'meteor/promise' { export class Promise extends globalThis.Promise { static async any, This, Args extends any[]>( fn: Fn, allowReuseOfCurrentFiber?: boolean, ): (this: This, ...args: Args) => Promise>; static asyncApply any, This, Args extends any[]>( fn: Fn, context: This, args: Args, allowReuseOfCurrentFiber?: boolean, ): Promise>; static await(value: PromiseLike): T; static awaitAll(values: Iterable>): T[]; await(): T; } }