UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

19 lines (14 loc) 313 B
/** * No Operation, do nothing Node - Version 1 * No Operation */ export interface NoOpV1Params { } interface NoOpV1NodeBase { type: 'n8n-nodes-base.noOp'; version: 1; } export type NoOpV1ParamsNode = NoOpV1NodeBase & { config: NodeConfig<NoOpV1Params>; }; export type NoOpV1Node = NoOpV1ParamsNode;