msal-iframe-ok
Version:
Fork to allow silent renewal in iFrame of Microsoft Authentication Library for js
15 lines (14 loc) • 401 B
TypeScript
import { Account } from "./Account";
import { IdToken } from "./IdToken";
export declare type AuthResponse = {
uniqueId: string;
tenantId: string;
tokenType: string;
idToken: IdToken;
accessToken: string;
scopes: Array<string>;
expiresOn: Date;
account: Account;
accountState: string;
};
export declare function buildResponseStateOnly(state: string): AuthResponse;