n8n-nodes-cloudconvert
Version:
A Node to send file conversion jobs to cloudconvert.com
14 lines (13 loc) • 556 B
TypeScript
import { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow';
export declare class CloudConvertTrigger implements INodeType {
description: INodeTypeDescription;
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
methods: {};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}