n8n-nodes-base
Version:
Base nodes of n8n
17 lines • 725 B
TypeScript
import { type IHookFunctions, type INodeType, type INodeTypeDescription, type IWebhookFunctions, type IWebhookResponseData } from 'n8n-workflow';
import { listSearch } from './methods';
export declare class FacebookLeadAdsTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
listSearch: typeof listSearch;
};
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}
//# sourceMappingURL=FacebookLeadAdsTrigger.node.d.ts.map