interface UntrustedDataMembers {
    getAuthParams(): null | {
        ext: undefined | {
            [key: string]: string;
        };
        loginHint: undefined | string;
        screenHint: undefined | string;
        uiLocales: undefined | string;
    };
    getSubmittedFormData(): null | {
        [key: string]: any;
    };
}

Methods

  • Returns null | {
        ext: undefined | {
            [key: string]: string;
        };
        loginHint: undefined | string;
        screenHint: undefined | string;
        uiLocales: undefined | string;
    }