n8n-nodes-alive5weather
Version:
n8n nodes for Alive5 SMS and Weather services
11 lines (10 loc) • 461 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare class Alive5SendSMS implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getChannels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}