react-ts-tradingview-widgets
Version:
This is a React component library for TradingView Widgets. TypeScript is fully supported for every component!
17 lines (16 loc) • 536 B
TypeScript
import React from "react";
import { ColorTheme, Currencies, CopyrightStyles, Locales } from "../index";
export 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 _default: React.NamedExoticComponent<ForexHeatMapProps>;
export default _default;