UNPKG

n8n-nodes-finnhub

Version:
16 lines (15 loc) 559 B
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 };