UNPKG

react-ts-tradingview-widgets

Version:

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

22 lines (21 loc) 669 B
import React from "react"; import { ColorTheme, DateRange, CopyrightStyles, Locales } from "../index"; export 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; chartOnly?: boolean; children?: never; copyrightStyles?: CopyrightStyles; }; declare const _default: React.NamedExoticComponent<MiniChartProps>; export default _default;