UNPKG

@n-octo-n/n8n-nodes-json-database

Version:

Use a JSON file as a persistent, hierarchical key-value database.

9 lines (8 loc) 329 B
import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; export interface IJsonObject { [key: string]: any; } export declare class JsonDatabase implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }