1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2020-04-22 13:08:33 +01:00
parent d915e613dc
commit 01abb61e9a
3 changed files with 291 additions and 242 deletions

View File

@@ -33,7 +33,7 @@ export async function timeout<T>(promise: Promise<T>, timeoutValue: T, ms: numbe
}
export interface IDeferred<T> {
resolve: (T) => void;
resolve: (value: T) => void;
reject: (any) => void;
promise: Promise<T>;
}