mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
25 lines
530 B
TypeScript
25 lines
530 B
TypeScript
|
import type {
|
||
|
IExecuteFunctions,
|
||
|
INodeType,
|
||
|
INodeTypeBaseDescription,
|
||
|
INodeTypeDescription,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
import { versionDescription } from './actions/versionDescription';
|
||
|
import { router } from './actions/router';
|
||
|
|
||
|
export class ItemListsV3 implements INodeType {
|
||
|
description: INodeTypeDescription;
|
||
|
|
||
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
||
|
this.description = {
|
||
|
...baseDescription,
|
||
|
...versionDescription,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
async execute(this: IExecuteFunctions) {
|
||
|
return router.call(this);
|
||
|
}
|
||
|
}
|