n8n-nodes-nextcloud-deck
Version:
n8n Node für die Integration mit Nextcloud Deck - AI Agent Tool Support
14 lines (13 loc) • 930 B
TypeScript
import { ILoadOptionsFunctions, INodePropertyOptions, INodeListSearchResult } from 'n8n-workflow';
export declare class NodeLoadOptions {
static getBoards(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
static getStacks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
static getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
}
export declare class NodeListSearch {
static getBoards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
static getStacks(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
static getCards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
static getUsers(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
static getLabels(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
}