12 lines
No EOL
635 B
TypeScript
Executable file
12 lines
No EOL
635 B
TypeScript
Executable file
import type { ExternalTokenResponse } from "@azure/msal-common/browser";
|
|
import type { SilentRequest } from "../request/SilentRequest.js";
|
|
import type { LoadTokenOptions } from "./TokenCache.js";
|
|
import type { AuthenticationResult } from "../response/AuthenticationResult.js";
|
|
export interface ITokenCache {
|
|
/**
|
|
* API to side-load tokens to MSAL cache
|
|
* @returns `AuthenticationResult` for the response that was loaded.
|
|
*/
|
|
loadExternalTokens(request: SilentRequest, response: ExternalTokenResponse, options: LoadTokenOptions): Promise<AuthenticationResult>;
|
|
}
|
|
//# sourceMappingURL=ITokenCache.d.ts.map
|