From 47ba8cfa24c7fee63efe6dc2d0faa3fea1288ff7 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 28 Apr 2023 08:52:47 +0100 Subject: [PATCH] Correct interactive-auth types (#3328) --- src/interactive-auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interactive-auth.ts b/src/interactive-auth.ts index 3b25e3cb7..7c78bd0f4 100644 --- a/src/interactive-auth.ts +++ b/src/interactive-auth.ts @@ -151,7 +151,7 @@ interface IOpts { * The busyChanged callback should be used instead of the background flag. * Should return a promise which resolves to the successful response or rejects with a MatrixError. */ - doRequest(auth: IAuthData | null, background: boolean): Promise; + doRequest(auth: IAuthDict | null, background: boolean): Promise; /** * Called when the status of the UI auth changes, * ie. when the state of an auth stage changes of when the auth flow moves to a new stage.