diff --git a/src/client.ts b/src/client.ts index 27f698b88..dabb1a959 100644 --- a/src/client.ts +++ b/src/client.ts @@ -188,7 +188,7 @@ import { IPusher, IPusherRequest, IPushRules, PushRuleAction, PushRuleKind, Rule import { IThreepid } from "./@types/threepids"; import { CryptoStore } from "./crypto/store/base"; import { MediaHandler } from "./webrtc/mediaHandler"; -import { ILoginFlowsResponse, IRefreshTokenResponse, SSOAction } from "./@types/auth"; +import { IRefreshTokenResponse, SSOAction } from "./@types/auth"; import { TypedEventEmitter } from "./models/typed-event-emitter"; import { ReceiptType } from "./@types/read_receipts"; import { MSC3575SlidingSyncRequest, MSC3575SlidingSyncResponse, SlidingSync } from "./sliding-sync"; @@ -7080,10 +7080,10 @@ export class MatrixClient extends TypedEventEmitter} Resolves to the available login flows + * @return {Promise} Resolves: TODO * @return {module:http-api.MatrixError} Rejects: with an error response. */ - public loginFlows(callback?: Callback): Promise { + public loginFlows(callback?: Callback): Promise { // TODO: Types return this.http.request(callback, Method.Get, "/login"); }