/** * @description 设置缓存 * @author anthhub * @date 2019-05-26 * @export * @param {string} key * @param {PlainObject} value */ export declare function setCache(key: string, value: PlainObject): void; /** * @description 读取缓存 * @author anthhub * @date 2019-05-26 * @export * @param {string} key * @returns */ export declare function getCache(key: string): any;