17 lines
761 B
TypeScript
17 lines
761 B
TypeScript
![]() |
import { StandardInteractionClient } from "./StandardInteractionClient";
|
||
|
import { CommonSilentFlowRequest } from "@azure/msal-common";
|
||
|
import { AuthenticationResult } from "../response/AuthenticationResult";
|
||
|
import { ClearCacheRequest } from "../request/ClearCacheRequest";
|
||
|
export declare class SilentCacheClient extends StandardInteractionClient {
|
||
|
/**
|
||
|
* Returns unexpired tokens from the cache, if available
|
||
|
* @param silentRequest
|
||
|
*/
|
||
|
acquireToken(silentRequest: CommonSilentFlowRequest): Promise<AuthenticationResult>;
|
||
|
/**
|
||
|
* API to silenty clear the browser cache.
|
||
|
* @param logoutRequest
|
||
|
*/
|
||
|
logout(logoutRequest?: ClearCacheRequest): Promise<void>;
|
||
|
}
|
||
|
//# sourceMappingURL=SilentCacheClient.d.ts.map
|