Use any instead of object

pull/21833/head
J. Ryan Stinnett 2021-05-21 13:11:33 +01:00
parent 320c8d2091
commit 3b50808cb0
1 changed files with 3 additions and 3 deletions

View File

@ -89,14 +89,14 @@ interface IAuthDict {
// TODO: Remove `user` once servers support proper UIA
// See https://github.com/vector-im/element-web/issues/10312
user?: string;
identifier?: object;
identifier?: any;
password?: string;
response?: string;
// TODO: Remove `threepid_creds` once servers support proper UIA
// See https://github.com/vector-im/element-web/issues/10312
// See https://github.com/matrix-org/matrix-doc/issues/2220
threepid_creds?: object;
threepidCreds?: object;
threepid_creds?: any;
threepidCreds?: any;
}
/* eslint-enable camelcase */