investing-economic-calendar
Version:
Extract economic events from the Investing.com widget.
20 lines (19 loc) • 679 B
TypeScript
import type { CalendarType } from "./CalendarType";
import type { Category } from "./Category";
import type { Column } from "./Column";
import type { Country } from "./Country";
import type { Feature } from "./Feature";
import type { Importance } from "./Importance";
import type { Language } from "./Language";
import type { TimeZone } from "./TimeZone";
export interface ApiCalendarParams {
countries?: Country[];
importance?: Importance[];
timeZone?: TimeZone;
calType?: CalendarType;
lang?: Language;
category?: Category[];
columns?: Column[];
features?: Feature[];
}
export declare function buildApiParams(params: ApiCalendarParams): string;