@daouy/n8n-nodes-carbone
Version:
n8n nodes for Carbone integration
10 lines (9 loc) • 390 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class CarboneLifecycle implements INodeType {
listTemplates(this: IExecuteFunctions): Promise<Array<{
name: string;
value: string;
}>>;
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}