securepay
Version:
https://www.securepay.com.au/
16 lines (15 loc) • 344 B
TypeScript
import * as cacheManager from "cache-manager";
export declare class CacheService {
private _cache;
constructor();
/**
* Get Cached Value
*/
get(key: string): Promise<any>;
/**
* Set Cache
*
* @returns
*/
set(key: string, data: any, options?: cacheManager.CachingConfig): Promise<string>;
}