n8n-nodes-imobzi
Version:
Nodes para integração com a API da Imobzi no n8n
9 lines (8 loc) • 404 B
TypeScript
import { INodeType, INodeTypeDescription, IWebhookFunctions } from 'n8n-workflow';
export declare class ImobziWebhook implements INodeType {
description: INodeTypeDescription;
webhook(this: IWebhookFunctions): Promise<any>;
checkExists(this: IWebhookFunctions): Promise<boolean>;
create(this: IWebhookFunctions): Promise<boolean>;
delete(this: IWebhookFunctions): Promise<boolean>;
}