Comparing version 0.1.12 to 0.1.13
@@ -30,4 +30,4 @@ export interface Data<V> { | ||
*/ | ||
set(key: string, value: V, ttl?: number): void; | ||
delete(key: string): boolean; | ||
set<T = V>(key: string, value: T, ttl?: number): void; | ||
delete<T = V>(key: string): T; | ||
clear(): void; | ||
@@ -34,0 +34,0 @@ clearExpire(): void; |
{ | ||
"name": "keyv-file", | ||
"version": "0.1.12", | ||
"version": "0.1.13", | ||
"description": "File storage adapter for Keyv, using msgpack to serialize data fast and small.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8864