react-ts-tradingview-widgets-fixed
Version:
This is a React component library for TradingView Widgets. TypeScript is fully supported for every component!
21 lines (20 loc) • 635 B
TypeScript
import React from "react";
import { ColorTheme, DateRange, CopyrightStyles, Locales } from "../index";
export declare type MiniChartProps = {
symbol?: string;
width?: number | string;
height?: number | string;
locale?: Locales;
dateRange?: DateRange;
colorTheme?: ColorTheme;
trendLineColor?: string;
underLineColor?: string;
underLineBottomColor?: string;
isTransparent?: boolean;
autosize?: boolean;
largeChartUrl?: string;
children?: never;
copyrightStyles?: CopyrightStyles;
};
declare const MiniChart: React.FC<MiniChartProps>;
export default MiniChart;