1 | import { AuthResponse } from "../AuthResponse";
|
2 | import { Account } from "../Account";
|
3 | import { IdToken } from "../IdToken";
|
4 | import { ServerRequestParameters } from "../ServerRequestParameters";
|
5 |
|
6 |
|
7 |
|
8 | export declare class ResponseUtils {
|
9 | static setResponseIdToken(originalResponse: AuthResponse, idTokenObj: IdToken): AuthResponse;
|
10 | static buildAuthResponse(idToken: IdToken, authResponse: AuthResponse, serverAuthenticationRequest: ServerRequestParameters, account: Account, scopes: Array<string>, accountState: string): AuthResponse;
|
11 | }
|