n8n-nodes-base
Version:
Base nodes of n8n
21 lines • 1.37 kB
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ClickUp implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getSpaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getFolders(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getFolderlessLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getAssignees(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTimeEntryTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=ClickUp.node.d.ts.map