UNPKG

react-ts-tradingview-widgets

Version:

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

16 lines (15 loc) 479 B
import React from "react"; import { ColorTheme, CopyrightStyles, Locales } from "../index"; export type SymbolInfoProps = { symbol?: string; width?: string | number; autosize?: boolean; locale?: Locales; colorTheme?: ColorTheme; isTransparent?: boolean; largeChartUrl?: string; children?: never; copyrightStyles?: CopyrightStyles; }; declare const _default: React.NamedExoticComponent<SymbolInfoProps>; export default _default;