初始化版本库,可用
This commit is contained in:
11
types/Common/AppCache.d.ts
vendored
Normal file
11
types/Common/AppCache.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
declare class Appcache {
|
||||
private _cacheMap;
|
||||
has(key: string): boolean;
|
||||
get(key: string): any | undefined;
|
||||
set<T>(key: string, value: T): void;
|
||||
clear(): void;
|
||||
delete(k: string): void;
|
||||
}
|
||||
export declare const appCache: Appcache;
|
||||
export {};
|
||||
//# sourceMappingURL=AppCache.d.ts.map
|
Reference in New Issue
Block a user