Files
server_debian_macro/node_modules/@azure/msal-browser/dist/naa/TokenResponse.d.ts
2025-02-18 22:59:07 +00:00

14 lines
370 B
TypeScript

export type TokenResponse = {
access_token: string;
expires_in: number;
id_token: string;
properties: TokenResponseProperties | null;
scope?: string;
shr?: string;
extendedLifetimeToken?: boolean;
authority?: string;
};
export type TokenResponseProperties = {
MATS?: string;
};
//# sourceMappingURL=TokenResponse.d.ts.map