Procházet zdrojové kódy

Fix let FutureStatic inherit from PromiseConstructor

Lennart Grahl před 6 roky
rodič
revize
de9a5b7117
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/types/future.d.ts

+ 1 - 1
src/types/future.d.ts

@@ -36,7 +36,7 @@ interface Future<T> extends Promise<T> {
     reject(reason?: any): void;
 }
 
-interface FutureStatic {
+interface FutureStatic extends PromiseConstructor {
     new<T>(executor?: (resolveFn: (value?: T | PromiseLike<T>) => void,
                        rejectFn: (reason?: any) => void) => void,
     ): Future<T>