@flex-cache/types
Advanced tools
+0
-0
| export * from './src/CacheController'; |
+0
-0
@@ -0,0 +0,0 @@ "use strict"; |
| export interface ICacheController { | ||
| get<T>(name: string): Promise<T>; | ||
| get<T>(name: string): Promise<T | null>; | ||
| set<T>(name: string, data: T, ttl: number): Promise<void>; | ||
| delete<T>(name: string): Promise<void>; | ||
| } |
| "use strict"; | ||
| Object.defineProperty(exports, "__esModule", { value: true }); |
+0
-0
@@ -0,0 +0,0 @@ MIT License |
+1
-1
| { | ||
| "name": "@flex-cache/types", | ||
| "version": "1.0.1", | ||
| "version": "1.0.2", | ||
| "dependencies": {}, | ||
@@ -5,0 +5,0 @@ "description": "Base cache logic, which operates with Cache Storages.", |
+0
-0
@@ -0,0 +0,0 @@ # cache |
2933
-1.31%