n8n-nodes-exchangerate-api
Version:
n8n community node for the Exchange Rate API
7 lines (6 loc) • 316 B
TypeScript
import type { IExecuteFunctions } from 'n8n-workflow';
import type { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ExchangeRateAPI implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}