@negreanucalin8x8/n8n-nodes-8x8
Version:
This is a Work in progress
10 lines (9 loc) • 547 B
TypeScript
import { INodeProperties, INodePropertyOptions } from "n8n-workflow/dist/Interfaces";
import { RESOURCE_LIST } from "../apiDefinition";
export declare class ApiDefHelper {
static getParameters(): INodeProperties[];
static getResource(resource: RESOURCE_LIST): import("../types").IEghtOperationList;
static getOperation(resource: RESOURCE_LIST, operationName: string): import("../types").IEghtOperation;
static getResources(): INodePropertyOptions[];
static generateApiFromOperation(resource: RESOURCE_LIST): INodeProperties;
}