Comparing version 2.1.2 to 2.1.3
{ | ||
"name": "asc", | ||
"description": "A middleware layer between a service and a client. The service could be an in-process library, a file, an external web service, anything. Any time the results from a resource call can be cached, you can use ASC as a proxy to that resource.", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"author": "Anthony Hildoer <anthony@bluerival.com>", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -16,4 +16,4 @@ declare module 'asc' { | ||
type GetCallback = (key: string) => Promise<any>; | ||
type SetCallback = (key: string, data: any) => Promise<void>; | ||
type ClearCallback = (key: string) => Promise<void>; | ||
type SetCallback = (key: string, data: any) => Promise<any>; | ||
type ClearCallback = (key: string) => Promise<any>; | ||
@@ -20,0 +20,0 @@ interface CacheLayer { |
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
27482