chart-0714
Version:
Professional trading chart library with advanced customization for trading journal apps
12 lines (11 loc) • 562 B
TypeScript
import { ChartOptions } from './types';
import { Chart } from './core/Chart';
export { Chart } from './core/Chart';
export { DrawingManager } from './core/DrawingManager';
export { DataManager } from './core/DataManager';
export * from './types';
export { darkTheme, lightTheme } from './utils/theme';
export { ChartComponent, useChart } from './react-integration';
export type { ChartProps, ChartRef } from './react-integration';
export declare function createChart(options: ChartOptions): Chart;
export declare function setGlobalDebug(enabled: boolean): void;