codehooks-js 1.2.18 → 1.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -381,7 +381,7 @@ export type DatastoreAPI = {
|
|
|
381
381
|
/**
|
|
382
382
|
* - Set a key-value pair in the current Datastore
|
|
383
383
|
*/
|
|
384
|
-
set: (key: string, value: string, options?: object) => Promise<any>;
|
|
384
|
+
set: (key: string, value: string | object, options?: object) => Promise<any>;
|
|
385
385
|
/**
|
|
386
386
|
* - Get a key-value pair in the current Datastore
|
|
387
387
|
*/
|