n8n-nodes-alive5
Version:
Send SMS messages via alive5
12 lines (11 loc) • 504 B
TypeScript
import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow';
export declare class Alive5 implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getChannels(this: ILoadOptionsFunctions): Promise<any>;
getAgents(this: ILoadOptionsFunctions): Promise<any>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}