n8n-nodes-nuwa
Version:
An n8n node for integrating with the GVA (Gin-Vue-Admin) backend system.
13 lines (12 loc) • 460 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { getApiGroups, getApis } from './methods';
export declare class Nuwa implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getApiGroups: typeof getApiGroups;
getApis: typeof getApis;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}