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