react-tradingview-embed
Version:
React components for TradingView Embeds
17 lines • 502 B
TypeScript
/// <reference types="react" />
export declare type TimelineWidgetProps = {
colorTheme?: string;
isTransparent?: boolean;
displayMode?: string;
width?: string | number;
height?: string | number;
locale?: string;
};
declare type TimelineProps = {
widgetProps?: TimelineWidgetProps;
widgetPropsAny?: any;
children?: never;
};
declare const Timeline: (props: TimelineProps) => JSX.Element;
export default Timeline;
//# sourceMappingURL=Timeline.d.ts.map