12 lines
589 B
TypeScript
12 lines
589 B
TypeScript
|
import { ExternalTokenResponse } from "@azure/msal-common";
|
||
|
import { SilentRequest } from "../request/SilentRequest";
|
||
|
import { LoadTokenOptions } from "./TokenCache";
|
||
|
import { AuthenticationResult } from "../response/AuthenticationResult";
|
||
|
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): AuthenticationResult;
|
||
|
}
|
||
|
//# sourceMappingURL=ITokenCache.d.ts.map
|