1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-05 00:42:10 +03:00

Finish adding registration token UIAA type (#2048)

Signed-off-by: Callum Brown <callum@calcuode.com>
This commit is contained in:
Callum Brown
2021-12-09 02:38:22 +00:00
committed by GitHub
parent 72bc13eb39
commit 95e7a76ba9

View File

@@ -35,6 +35,7 @@ export interface IInputs {
emailAddress?: string;
phoneCountry?: string;
phoneNumber?: string;
registrationToken?: string;
}
export interface IStageStatus {
@@ -80,6 +81,7 @@ export interface IAuthDict {
// eslint-disable-next-line camelcase
threepid_creds?: any;
threepidCreds?: any;
registrationToken?: string;
}
class NoAuthFlowFoundError extends Error {