You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Index: es2018.promise.d.ts
===================================================================--- es2018.promise.d.ts+++ es2018.promise.d.ts@@ -7,6 +7,8 @@
* resolved value cannot be modified from the callback.
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
* @returns A Promise for the completion of the callback.
*/
- finally(onfinally?: (() => void) | undefined | null): Promise<T>;+ finally<U>(+ onfinally?: (() => U | PromiseLike<U>) | null | undefined,+ ): Promise<T>;
}