botbook/node_modules/@azure/msal-node/dist/cache/distributed/ICacheClient.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

18 lines
No EOL
477 B
TypeScript

export interface ICacheClient {
/**
* Retrieve the value from the cache
*
* @param key string
* @returns Promise<string>
*/
get(key: string): Promise<string>;
/**
* Save the required value using the provided key to cache
*
* @param key string
* @param value string
* @returns Promise<string>
*/
set(key: string, value: string): Promise<string>;
}
//# sourceMappingURL=ICacheClient.d.ts.map