@cloudbase/types
Advanced tools
Comparing version 0.1.0-beta.2 to 0.1.0-beta.5
@@ -1,3 +0,2 @@ | ||
import { ICloudbaseConfig } from "@cloudbase/types"; | ||
import { ICloudbasePlatformInfo, KV } from "."; | ||
import { ICloudbasePlatformInfo, KV,ICloudbaseConfig } from "."; | ||
@@ -12,7 +11,17 @@ export type ICacheConfig = Pick < ICloudbaseConfig, 'debug' | 'persistence' > & { | ||
keys:KV<string>; | ||
mode: 'async' | 'sync'; | ||
setStore(key: string, value: string, version?: string):void; | ||
setStoreAsync(key: string, value: string, version?: string):Promise<void>; | ||
getStore(key: string, version?: string):string; | ||
getStoreAsync(key: string, version?: string):Promise<string>; | ||
removeStore(key:string):void; | ||
removeStoreAsync(key:string):Promise<void>; | ||
updatePersistence?(persistence:string):void; | ||
updatePersistenceAsync?(persistence:string):Promise<void>; | ||
clear?():void; | ||
updatePersistence?(persistence:string):void; | ||
} |
{ | ||
"name": "@cloudbase/types", | ||
"version": "0.1.0-beta.2", | ||
"version": "0.1.0-beta.5", | ||
"description": "cloudbase javascript sdk types", | ||
@@ -5,0 +5,0 @@ "files": [ |
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
7904
227