UNPKG

react-ts-tradingview-widgets

Version:

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

19 lines (18 loc) 547 B
import React from "react"; import { ColorTheme, CopyrightStyles, Locales } from "../index"; export type TickerProps = { colorTheme?: ColorTheme; isTransparent?: boolean; showSymbolLogo?: boolean; locale?: Locales; symbols?: TickerSymbols; children?: never; copyrightStyles?: CopyrightStyles; }; export type TickerSymbols = TickerSymbol[]; export type TickerSymbol = { proName: string; title: string; }; declare const _default: React.NamedExoticComponent<TickerProps>; export default _default;