UNPKG

react-ts-tradingview-widgets-fixed

Version:

This is a React component library for TradingView Widgets. TypeScript is fully supported for every component!

17 lines (16 loc) 549 B
import React from "react"; import { ColorTheme, CopyrightStyles, Locales } from "../index"; export declare type EconomicCalendarProps = { colorTheme?: ColorTheme; isTransparent?: boolean; width?: string | number; height?: string | number; autosize?: boolean; locale?: Locales; importanceFilter?: "-1,0,1" | "0,1"; currencyFilter?: string; children?: never; copyrightStyles?: CopyrightStyles; }; declare const EconomicCalendar: React.FC<EconomicCalendarProps>; export default EconomicCalendar;