We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ServiceDB
1 parent 3aea15a commit 7ccfbd3Copy full SHA for 7ccfbd3
types/src/index.ts
@@ -247,6 +247,11 @@ export interface ServiceDBProp extends BasePropInterface {
247
type: "$.service.db";
248
}
249
250
+export interface ServiceDB {
251
+ get<T extends JSONValue>(key: string): T | undefined;
252
+ set(key: string, value: JSONValue): void;
253
+}
254
+
255
// https://pipedream.com/docs/code/nodejs/using-data-stores/#using-the-data-store
256
export interface DataStoreProp extends BasePropInterface {
257
type: "data_store";
0 commit comments