export default class Cache { private readonly store; constructor({ store }: { store: any; }); private key; /** @description 是否已过期 */ private isExpired; private config; /** @description 异步方式等待获取缓存 */ pending(ctx: any): any; resolves(ctx: any, promiseResult: any): void; }