n8n-nodes-alive5
Version:
Send and receive SMS messages via alive5
21 lines (20 loc) • 785 B
TypeScript
import { type IHookFunctions, type ILoadOptionsFunctions, type INodeType, type INodeTypeDescription, type IWebhookFunctions, type IWebhookResponseData } from 'n8n-workflow';
export declare class Alive5Trigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getChannels(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}