n8n-nodes-finnhub
Version:
n8n node to consume the finnhub.io REST API
16 lines (15 loc) • 559 B
TypeScript
import { INodeProperties } from 'n8n-workflow';
type ResourceName = 'stock' | 'mutualFund' | 'etf' | 'bond' | 'forex' | 'crypto' | 'index' | 'technical' | 'institutional' | 'economic' | 'enterprise' | 'alternative';
declare const operationProperties: INodeProperties[];
declare const fieldProperties: INodeProperties[];
export declare const resourceOptions: {
free: {
name: string;
value: ResourceName;
}[];
premium: {
name: string;
value: ResourceName;
}[];
};
export { operationProperties, fieldProperties };