mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 03:04:57 +08:00
9 lines
405 B
TypeScript
9 lines
405 B
TypeScript
|
|
export interface Config {
|
|
resolver?: (...args: any[]) => string | number;
|
|
ttl?: number; // 缓存过期时间
|
|
url?: string; // url包含改前缀才缓存 如api请求时缓存 admin请求时不缓存
|
|
}
|
|
export declare function Cache(config?: Config): (target: object, propertyName: string, propertyDesciptor: PropertyDescriptor) => PropertyDescriptor;
|
|
export declare function ClearCache();
|