fme-free-barchart-fetch
Version:
API for fetching data from the Free Barchart API
14 lines (13 loc) • 370 B
TypeScript
export declare class FreeBarchart {
private key;
version: string;
host: string;
endpoint: string;
symbol: string;
type: string;
types: string[];
typesSingleDay: string[];
interval: number;
constructor(key: string, symbol: string, frame: string, interval: number);
getDailyMinutes: (sDate: Date) => Promise<{}>;
}