1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Use IAuthData

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-09-13 18:06:35 +02:00
parent adb325b3bd
commit c9dea9948f

View File

@@ -35,11 +35,7 @@ interface IProps extends IDialogProps {
// response from initial request. If not supplied, will do a request on // response from initial request. If not supplied, will do a request on
// mount. // mount.
authData?: { authData?: IAuthData;
flows: [];
params: {};
session: string;
};
// callback // callback
makeRequest: (auth: IAuthData) => Promise<IAuthData>; makeRequest: (auth: IAuthData) => Promise<IAuthData>;