Use any instead of object

This commit is contained in:
J. Ryan Stinnett 2021-05-21 13:11:33 +01:00
parent 320c8d2091
commit 3b50808cb0

View file

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