n8n-nodes-base
Version:
Base nodes of n8n
19 lines • 859 B
TypeScript
import type { IHookFunctions, IWebhookFunctions, ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow';
export declare class WorkableTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getJobs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getStages(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}
//# sourceMappingURL=WorkableTrigger.node.d.ts.map