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) • 644 B
TypeScript
import React from "react";
import { ColorTheme, CopyrightStyles, Locales } from "../index";
export type TechnicalAnalysisProps = {
interval?: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "1D" | "1W" | "1M";
width?: number | string;
height?: number | string;
autosize?: boolean;
isTransparent?: boolean;
symbol?: string;
showIntervalTabs?: boolean;
locale?: Locales;
colorTheme?: ColorTheme;
largeChartUrl?: string;
children?: never;
copyrightStyles?: CopyrightStyles;
};
declare const _default: React.NamedExoticComponent<TechnicalAnalysisProps>;
export default _default;