/**
 * 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;