UNPKG

react-ts-tradingview-widgets-fixed

Version:

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

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