n8n-nodes-finnhub
Version:
n8n node to consume the finnhub.io REST API
10 lines (9 loc) • 362 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class Finnhub implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}