From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/promise/index.js.flow | 44 -------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 node_modules/promise/index.js.flow (limited to 'node_modules/promise/index.js.flow') diff --git a/node_modules/promise/index.js.flow b/node_modules/promise/index.js.flow deleted file mode 100644 index 78db68ccd..000000000 --- a/node_modules/promise/index.js.flow +++ /dev/null @@ -1,44 +0,0 @@ -// @flow - -declare class ThenPromise<+R> extends Promise { - constructor(callback: ( - resolve: (result: Promise | R) => void, - reject: (error: any) => void - ) => mixed): void; - - then( - onFulfill?: (value: R) => Promise | U, - onReject?: (error: any) => Promise | U - ): ThenPromise; - - catch( - onReject?: (error: any) => Promise | U - ): ThenPromise; - - // Extensions specific to then/promise - - /** - * Attaches callbacks for the resolution and/or rejection of the ThenPromise, without returning a new promise. - * @param onfulfilled The callback to execute when the ThenPromise is resolved. - * @param onrejected The callback to execute when the ThenPromise is rejected. - */ - done(onfulfilled?: (value: R) => any, onrejected?: (reason: any) => any): void; - - - /** - * Calls a node.js style callback. If none is provided, the promise is returned. - */ - nodeify(callback: void | null): ThenPromise; - nodeify(callback: (err: Error, value: R) => void): void; - - static resolve(object: Promise | T): ThenPromise; - static reject(error?: any): ThenPromise; - static all>(promises: T): ThenPromise<$TupleMap>; - static race | T>(promises: Array): ThenPromise; - - // Extensions specific to then/promise - - static denodeify(fn: Function): (...args: any[]) => ThenPromise; - static nodeify(fn: Function): Function; -} -module.exports = ThenPromise; -- cgit v1.2.3