Structure
Outline structure for a declarative-style node
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
export class ExampleNode implements INodeType {
description: INodeTypeDescription = {
// Basic node details here
properties: [
// Resources and operations here
]
};
}Outline structure for a programmatic-style node
Last updated
Was this helpful?