/** * 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; }; export type NoOpV1Node = NoOpV1ParamsNode;