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) • 534 B
TypeScript
import React from "react";
import { ColorTheme, Currencies, CopyrightStyles, Locales } from "../index";
export declare type ForexHeatMapProps = {
width?: string | number;
height?: string | number;
autosize?: boolean;
currencies?: Currencies[];
isTransparent?: boolean;
colorTheme?: ColorTheme;
locale?: Locales;
largeChartUrl?: string;
children?: never;
copyrightStyles?: CopyrightStyles;
};
declare const ForexHeatMap: React.FC<ForexHeatMapProps>;
export default ForexHeatMap;