UNPKG

515 BTypeScriptView Raw
1import { Account } from "./Account";
2import { IdToken } from "./IdToken";
3import { StringDict } from "./MsalTypes";
4export declare type AuthResponse = {
5 uniqueId: string;
6 tenantId: string;
7 tokenType: string;
8 idToken: IdToken;
9 idTokenClaims: StringDict;
10 accessToken: string;
11 scopes: Array<string>;
12 expiresOn: Date;
13 account: Account;
14 accountState: string;
15 fromCache: boolean;
16};
17export declare function buildResponseStateOnly(state: string): AuthResponse;