Преглед изворни кода

Fix let FutureStatic inherit from PromiseConstructor

Lennart Grahl пре 6 година
родитељ
комит
de9a5b7117
1 измењених фајлова са 1 додато и 1 уклоњено
  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>