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

Add missing type property on IAuthData (#2463)

Per spec, for example: https://spec.matrix.org/v1.2/client-server-api/#dummy-auth
This commit is contained in:
Travis Ralston
2022-06-15 00:37:02 -06:00
committed by GitHub
parent a1ab0d42fe
commit d3ff7655f7

View File

@@ -44,6 +44,7 @@ export interface IStageStatus {
export interface IAuthData {
session?: string;
type?: string;
completed?: string[];
flows?: IFlow[];
available_flows?: IFlow[];