n8n-nodes-base
Version:
Base nodes of n8n
17 lines • 742 B
TypeScript
import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow';
export declare class GitlabTrigger implements INodeType {
description: INodeTypeDescription;
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
/**
* Gitlab API - Add project hook:
* https://docs.gitlab.com/ee/api/projects.html#add-project-hook
*/
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}
//# sourceMappingURL=GitlabTrigger.node.d.ts.map