UNPKG

nest-redis-cache

Version:

使用redis实现nestjs接口层面的缓存

7 lines (6 loc) 215 B
import { Request } from 'express'; export declare function NestCacheApi({ exSecond, key, formatKey, }?: { exSecond?: number; key?: string; formatKey?: (key: string, request: Request) => string; }): any;