Comparing version 4.2.5 to 4.2.6
{ | ||
"name": "keyv", | ||
"version": "4.2.5", | ||
"version": "4.2.6", | ||
"description": "Simple key-value storage with support for multiple backends", | ||
@@ -49,10 +49,10 @@ "main": "src/index.js", | ||
"xo": "^0.48.0" | ||
}, | ||
"tsd" : { | ||
"directory" : "test" | ||
}, | ||
"types": "./src/index.d.ts", | ||
"files": [ | ||
"src" | ||
] | ||
}, | ||
"tsd": { | ||
"directory": "test" | ||
}, | ||
"types": "./src/index.d.ts", | ||
"files": [ | ||
"src" | ||
] | ||
} |
@@ -30,3 +30,3 @@ import {EventEmitter} from 'events'; | ||
/** Returns the value. */ | ||
get<Raw extends boolean = false>(key: string | string[] = [], options?: {raw?: Raw}): | ||
get<Raw extends boolean = false>(key: string | string[], options?: {raw?: Raw}): | ||
Promise<(Raw extends false | ||
@@ -46,3 +46,3 @@ ? Value | ||
*/ | ||
delete(key: string | string[] = []): Promise<boolean>; | ||
delete(key: string | string[]): Promise<boolean>; | ||
/** Delete all entries in the current namespace. */ | ||
@@ -49,0 +49,0 @@ clear(): Promise<void>; |
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
25247