react-klinecharts-ui 0.5.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,8 +1,9 @@
1
1
  import * as react from 'react';
2
2
  import { Dispatch, RefObject, ReactNode, ReactElement } from 'react';
3
- import { Period, SymbolInfo, KLineData, Chart, DeepPartial, Styles, OverlayTemplate, YAxisOverride, DataLoader, IndicatorTemplate } from 'react-klinecharts';
4
- import { OrderLineExtendData } from './extensions.cjs';
5
- export { DepthOverlayExtendData, DepthOverlayRow, OrderLineFontStyle, OrderLineLabelStyle, OrderLineLineStyle, OrderLineMarkStyle, OrderLinePadding, depthOverlay, indicators, orderLine, overlays, registerExtensions } from './extensions.cjs';
3
+ import { Period, SymbolInfo, KLineData, Chart, DeepPartial, Styles, OverlayTemplate, YAxisOverride, HotkeyTemplate, Hotkey, XAxisOverride, DataLoader, IndicatorTemplate } from 'klinecharts';
4
+ export { Hotkey, HotkeyActionParams, HotkeyTemplate, XAxisOverride, YAxisOverride } from 'klinecharts';
5
+ import { AlertLineExtendData, OrderLineExtendData } from './extensions.cjs';
6
+ export { DepthOverlayExtendData, DepthOverlayRow, OrderLineFontStyle, OrderLineLabelStyle, OrderLineLineStyle, OrderLineMarkStyle, OrderLinePadding, alertLine, depthOverlay, indicators, orderLine, overlays, registerExtensions } from './extensions.cjs';
6
7
 
7
8
  interface TerminalPeriod extends Period {
8
9
  label: string;
@@ -19,6 +20,7 @@ declare const DEFAULT_PERIODS: TerminalPeriod[];
19
20
  * re-export them so the public API surface (consumed via the package root)
20
21
  * stays unchanged.
21
22
  */
23
+
22
24
  type AlertCondition = "crossing_up" | "crossing_down" | "crossing";
23
25
  interface Alert {
24
26
  id: string;
@@ -26,6 +28,12 @@ interface Alert {
26
28
  condition: AlertCondition;
27
29
  message?: string;
28
30
  triggered: boolean;
31
+ /**
32
+ * Visual style for the alert line overlay (color, label text, line/mark
33
+ * styling, bell marker). Persisted in the store so it survives undo/redo
34
+ * and layout presets.
35
+ */
36
+ extendData?: AlertLineExtendData;
29
37
  }
30
38
  interface MeasurePoint {
31
39
  price: number;
@@ -198,6 +206,17 @@ type KlinechartsUIAction = {
198
206
  } | {
199
207
  type: "SET_ALERTS";
200
208
  alerts: Alert[];
209
+ } | {
210
+ type: "ADD_ALERT";
211
+ alert: Alert;
212
+ } | {
213
+ type: "REMOVE_ALERT";
214
+ id: string;
215
+ } | {
216
+ type: "CLEAR_ALERTS";
217
+ } | {
218
+ type: "MARK_ALERT_TRIGGERED";
219
+ ids: string[];
201
220
  } | {
202
221
  type: "SET_MEASURE";
203
222
  measure: Partial<MeasureState>;
@@ -508,6 +527,58 @@ interface UseScreenshotReturn {
508
527
  }
509
528
  declare function useScreenshot(): UseScreenshotReturn;
510
529
 
530
+ interface UseHotkeysReturn {
531
+ /**
532
+ * Register a custom hotkey globally. Idempotent per `template.name` — calling
533
+ * again with the same name replaces the previous handler. The `action`
534
+ * callback receives the chart instance, the keyboard event and the matched
535
+ * hotkey template (see klinecharts `HotkeyActionParams`).
536
+ */
537
+ registerHotkey: (template: HotkeyTemplate) => void;
538
+ /** Look up a registered hotkey template by name (built-in or custom). */
539
+ getHotkey: (name: string) => HotkeyTemplate | null;
540
+ /** Names of every registered hotkey (built-in + custom). */
541
+ supportedHotkeys: string[];
542
+ /**
543
+ * Enable or disable hotkey handling for the current chart. Pass `exclude`
544
+ * to keep hotkeys on but silence specific ones by name.
545
+ */
546
+ setHotkeysEnabled: (enabled: boolean, exclude?: string[]) => void;
547
+ /** The current hotkey config (`{ enabled, exclude }`) for the chart, or null. */
548
+ getHotkeysConfig: () => Hotkey | null;
549
+ }
550
+ /**
551
+ * Headless hook for klinecharts v10 keyboard shortcuts (added in
552
+ * klinecharts 10.0.0-beta3).
553
+ *
554
+ * Custom hotkeys are registered **globally** via klinecharts `registerHotkey`,
555
+ * so a shortcut defined here is shared by every chart in the page; the
556
+ * per-chart enable/exclude switches operate on the provider's chart instance.
557
+ */
558
+ declare function useHotkeys(): UseHotkeysReturn;
559
+
560
+ interface UseChartAxesReturn {
561
+ /**
562
+ * Override the main pane's X (time) axis — e.g. `scrollZoomEnabled`,
563
+ * `name`, or a custom `createTicks` generator. Added in klinecharts
564
+ * 10.0.0-beta2.
565
+ */
566
+ overrideXAxis: (override: XAxisOverride) => void;
567
+ /**
568
+ * Override a Y (value) axis — e.g. `reverse` to flip the price scale,
569
+ * `inside` to draw labels inside the pane, `position`, or a custom
570
+ * `createRange` / `createTicks`. Target a specific axis with `id` / `paneId`.
571
+ * Added in klinecharts 10.0.0-beta2.
572
+ */
573
+ overrideYAxis: (override: YAxisOverride) => void;
574
+ }
575
+ /**
576
+ * Headless hook for overriding the chart's built-in X / Y axes (klinecharts
577
+ * v10 `overrideXAxis` / `overrideYAxis`). For binding indicators to additional
578
+ * secondary Y-axes, use {@link useIndicators} instead.
579
+ */
580
+ declare function useChartAxes(): UseChartAxesReturn;
581
+
511
582
  interface UseFullscreenReturn {
512
583
  isFullscreen: boolean;
513
584
  toggle: () => void;
@@ -698,7 +769,7 @@ declare function useCrosshair(): UseCrosshairReturn;
698
769
 
699
770
  interface UseAlertsReturn {
700
771
  alerts: Alert[];
701
- addAlert: (price: number, condition: AlertCondition, message?: string) => string;
772
+ addAlert: (price: number, condition: AlertCondition, message?: string, extendData?: AlertLineExtendData) => string;
702
773
  removeAlert: (id: string) => void;
703
774
  clearAlerts: () => void;
704
775
  onAlertTriggered: (callback: (alert: Alert) => void) => void;
@@ -1026,4 +1097,4 @@ declare const superTrend: IndicatorTemplate;
1026
1097
 
1027
1098
  declare const vwap: IndicatorTemplate;
1028
1099
 
1029
- export { type AddIndicatorOptions, type Alert, type AlertCondition, type Annotation, CANDLE_TYPES, COMPARE_RULES, type CandleTypeItem, type CandleTypeOption, type ChartLayoutState, type CompareRule, type CompareSymbol, type CrosshairBarData, DEFAULT_PERIODS, DRAWING_CATEGORIES, type Datafeed, type DrawingCategoryItem, type DrawingTool, type DrawingToolCategory, type DrawingToolItem, type ExportFormat, INDICATOR_PARAMS, type IndicatorDefinition, type IndicatorInfo, type IndicatorParamConfig, type KlinechartsUIAction, type KlinechartsUIContextValue, KlinechartsUIDispatchContext, type KlinechartsUIDispatchValue, type KlinechartsUIOptions, KlinechartsUIProvider, type KlinechartsUISettingsState, type KlinechartsUIState, KlinechartsUIStateContext, type LayoutEntry, MAIN_INDICATORS, type MagnetMode, type MeasurePoint, type MeasureResult, OrderLineExtendData, type OrderLineOptions, PRICE_AXIS_TYPES, type PartialSymbolInfo, type PriceAxisType, type ReplaySpeed, SUB_INDICATORS, type ScriptPlacement, TA, TIMEZONES, TOOLTIP_SHOW_RULES, type TerminalPeriod, type TimezoneItem, type TimezoneOption, type TooltipShowRule, type UndoRedoAction, type UndoRedoActionType, type UseAlertsReturn, type UseAnnotationsReturn, type UseCompareReturn, type UseCrosshairReturn, type UseDataExportReturn, type UseDrawingToolsReturn, type UseFullscreenReturn, type UseIndicatorsReturn, type UseKlinechartsUILoadingReturn, type UseKlinechartsUISettingsReturn, type UseKlinechartsUIThemeReturn, type UseLayoutManagerReturn, type UseMeasureReturn, type UseOrderLinesReturn, type UsePeriodsReturn, type UseReplayReturn, type UseScreenshotReturn, type UseScriptEditorReturn, type UseSymbolSearchReturn, type UseTimezoneReturn, type UseUndoRedoReturn, type UseWatchlistReturn, type WatchlistItem, YAXIS_POSITIONS, type YAxisPosition, abcd, anyWaves, arrow, bollTv, brush, cci, circle, createDataLoader, eightWaves, elliottWave, fibRetracement, fibonacciCircle, fibonacciExtension, fibonacciSegment, fibonacciSpeedResistanceFan, fibonacciSpiral, fiveWaves, gannBox, gannFan, hma, ichimoku, longPosition, maRibbon, macdTv, measure, parallelChannel, parallelogram, pivotPoints, ray, rect, rsiTv, shortPosition, stochastic, superTrend, threeWaves, triangle, useAlerts, useAnnotations, useCompare, useCrosshair, useDataExport, useDrawingTools, useFullscreen, useIndicators, useKlinechartsUI, useKlinechartsUILoading, useKlinechartsUISettings, useKlinechartsUITheme, useLayoutManager, useMeasure, useOrderLines, usePeriods, useReplay, useScreenshot, useScriptEditor, useSymbolSearch, useTimezone, useUndoRedo, useWatchlist, vwap, xabcd };
1100
+ export { type AddIndicatorOptions, type Alert, type AlertCondition, AlertLineExtendData, type Annotation, CANDLE_TYPES, COMPARE_RULES, type CandleTypeItem, type CandleTypeOption, type ChartLayoutState, type CompareRule, type CompareSymbol, type CrosshairBarData, DEFAULT_PERIODS, DRAWING_CATEGORIES, type Datafeed, type DrawingCategoryItem, type DrawingTool, type DrawingToolCategory, type DrawingToolItem, type ExportFormat, INDICATOR_PARAMS, type IndicatorDefinition, type IndicatorInfo, type IndicatorParamConfig, type KlinechartsUIAction, type KlinechartsUIContextValue, KlinechartsUIDispatchContext, type KlinechartsUIDispatchValue, type KlinechartsUIOptions, KlinechartsUIProvider, type KlinechartsUISettingsState, type KlinechartsUIState, KlinechartsUIStateContext, type LayoutEntry, MAIN_INDICATORS, type MagnetMode, type MeasurePoint, type MeasureResult, OrderLineExtendData, type OrderLineOptions, PRICE_AXIS_TYPES, type PartialSymbolInfo, type PriceAxisType, type ReplaySpeed, SUB_INDICATORS, type ScriptPlacement, TA, TIMEZONES, TOOLTIP_SHOW_RULES, type TerminalPeriod, type TimezoneItem, type TimezoneOption, type TooltipShowRule, type UndoRedoAction, type UndoRedoActionType, type UseAlertsReturn, type UseAnnotationsReturn, type UseChartAxesReturn, type UseCompareReturn, type UseCrosshairReturn, type UseDataExportReturn, type UseDrawingToolsReturn, type UseFullscreenReturn, type UseHotkeysReturn, type UseIndicatorsReturn, type UseKlinechartsUILoadingReturn, type UseKlinechartsUISettingsReturn, type UseKlinechartsUIThemeReturn, type UseLayoutManagerReturn, type UseMeasureReturn, type UseOrderLinesReturn, type UsePeriodsReturn, type UseReplayReturn, type UseScreenshotReturn, type UseScriptEditorReturn, type UseSymbolSearchReturn, type UseTimezoneReturn, type UseUndoRedoReturn, type UseWatchlistReturn, type WatchlistItem, YAXIS_POSITIONS, type YAxisPosition, abcd, anyWaves, arrow, bollTv, brush, cci, circle, createDataLoader, eightWaves, elliottWave, fibRetracement, fibonacciCircle, fibonacciExtension, fibonacciSegment, fibonacciSpeedResistanceFan, fibonacciSpiral, fiveWaves, gannBox, gannFan, hma, ichimoku, longPosition, maRibbon, macdTv, measure, parallelChannel, parallelogram, pivotPoints, ray, rect, rsiTv, shortPosition, stochastic, superTrend, threeWaves, triangle, useAlerts, useAnnotations, useChartAxes, useCompare, useCrosshair, useDataExport, useDrawingTools, useFullscreen, useHotkeys, useIndicators, useKlinechartsUI, useKlinechartsUILoading, useKlinechartsUISettings, useKlinechartsUITheme, useLayoutManager, useMeasure, useOrderLines, usePeriods, useReplay, useScreenshot, useScriptEditor, useSymbolSearch, useTimezone, useUndoRedo, useWatchlist, vwap, xabcd };
package/dist/index.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import * as react from 'react';
2
2
  import { Dispatch, RefObject, ReactNode, ReactElement } from 'react';
3
- import { Period, SymbolInfo, KLineData, Chart, DeepPartial, Styles, OverlayTemplate, YAxisOverride, DataLoader, IndicatorTemplate } from 'react-klinecharts';
4
- import { OrderLineExtendData } from './extensions.js';
5
- export { DepthOverlayExtendData, DepthOverlayRow, OrderLineFontStyle, OrderLineLabelStyle, OrderLineLineStyle, OrderLineMarkStyle, OrderLinePadding, depthOverlay, indicators, orderLine, overlays, registerExtensions } from './extensions.js';
3
+ import { Period, SymbolInfo, KLineData, Chart, DeepPartial, Styles, OverlayTemplate, YAxisOverride, HotkeyTemplate, Hotkey, XAxisOverride, DataLoader, IndicatorTemplate } from 'klinecharts';
4
+ export { Hotkey, HotkeyActionParams, HotkeyTemplate, XAxisOverride, YAxisOverride } from 'klinecharts';
5
+ import { AlertLineExtendData, OrderLineExtendData } from './extensions.js';
6
+ export { DepthOverlayExtendData, DepthOverlayRow, OrderLineFontStyle, OrderLineLabelStyle, OrderLineLineStyle, OrderLineMarkStyle, OrderLinePadding, alertLine, depthOverlay, indicators, orderLine, overlays, registerExtensions } from './extensions.js';
6
7
 
7
8
  interface TerminalPeriod extends Period {
8
9
  label: string;
@@ -19,6 +20,7 @@ declare const DEFAULT_PERIODS: TerminalPeriod[];
19
20
  * re-export them so the public API surface (consumed via the package root)
20
21
  * stays unchanged.
21
22
  */
23
+
22
24
  type AlertCondition = "crossing_up" | "crossing_down" | "crossing";
23
25
  interface Alert {
24
26
  id: string;
@@ -26,6 +28,12 @@ interface Alert {
26
28
  condition: AlertCondition;
27
29
  message?: string;
28
30
  triggered: boolean;
31
+ /**
32
+ * Visual style for the alert line overlay (color, label text, line/mark
33
+ * styling, bell marker). Persisted in the store so it survives undo/redo
34
+ * and layout presets.
35
+ */
36
+ extendData?: AlertLineExtendData;
29
37
  }
30
38
  interface MeasurePoint {
31
39
  price: number;
@@ -198,6 +206,17 @@ type KlinechartsUIAction = {
198
206
  } | {
199
207
  type: "SET_ALERTS";
200
208
  alerts: Alert[];
209
+ } | {
210
+ type: "ADD_ALERT";
211
+ alert: Alert;
212
+ } | {
213
+ type: "REMOVE_ALERT";
214
+ id: string;
215
+ } | {
216
+ type: "CLEAR_ALERTS";
217
+ } | {
218
+ type: "MARK_ALERT_TRIGGERED";
219
+ ids: string[];
201
220
  } | {
202
221
  type: "SET_MEASURE";
203
222
  measure: Partial<MeasureState>;
@@ -508,6 +527,58 @@ interface UseScreenshotReturn {
508
527
  }
509
528
  declare function useScreenshot(): UseScreenshotReturn;
510
529
 
530
+ interface UseHotkeysReturn {
531
+ /**
532
+ * Register a custom hotkey globally. Idempotent per `template.name` — calling
533
+ * again with the same name replaces the previous handler. The `action`
534
+ * callback receives the chart instance, the keyboard event and the matched
535
+ * hotkey template (see klinecharts `HotkeyActionParams`).
536
+ */
537
+ registerHotkey: (template: HotkeyTemplate) => void;
538
+ /** Look up a registered hotkey template by name (built-in or custom). */
539
+ getHotkey: (name: string) => HotkeyTemplate | null;
540
+ /** Names of every registered hotkey (built-in + custom). */
541
+ supportedHotkeys: string[];
542
+ /**
543
+ * Enable or disable hotkey handling for the current chart. Pass `exclude`
544
+ * to keep hotkeys on but silence specific ones by name.
545
+ */
546
+ setHotkeysEnabled: (enabled: boolean, exclude?: string[]) => void;
547
+ /** The current hotkey config (`{ enabled, exclude }`) for the chart, or null. */
548
+ getHotkeysConfig: () => Hotkey | null;
549
+ }
550
+ /**
551
+ * Headless hook for klinecharts v10 keyboard shortcuts (added in
552
+ * klinecharts 10.0.0-beta3).
553
+ *
554
+ * Custom hotkeys are registered **globally** via klinecharts `registerHotkey`,
555
+ * so a shortcut defined here is shared by every chart in the page; the
556
+ * per-chart enable/exclude switches operate on the provider's chart instance.
557
+ */
558
+ declare function useHotkeys(): UseHotkeysReturn;
559
+
560
+ interface UseChartAxesReturn {
561
+ /**
562
+ * Override the main pane's X (time) axis — e.g. `scrollZoomEnabled`,
563
+ * `name`, or a custom `createTicks` generator. Added in klinecharts
564
+ * 10.0.0-beta2.
565
+ */
566
+ overrideXAxis: (override: XAxisOverride) => void;
567
+ /**
568
+ * Override a Y (value) axis — e.g. `reverse` to flip the price scale,
569
+ * `inside` to draw labels inside the pane, `position`, or a custom
570
+ * `createRange` / `createTicks`. Target a specific axis with `id` / `paneId`.
571
+ * Added in klinecharts 10.0.0-beta2.
572
+ */
573
+ overrideYAxis: (override: YAxisOverride) => void;
574
+ }
575
+ /**
576
+ * Headless hook for overriding the chart's built-in X / Y axes (klinecharts
577
+ * v10 `overrideXAxis` / `overrideYAxis`). For binding indicators to additional
578
+ * secondary Y-axes, use {@link useIndicators} instead.
579
+ */
580
+ declare function useChartAxes(): UseChartAxesReturn;
581
+
511
582
  interface UseFullscreenReturn {
512
583
  isFullscreen: boolean;
513
584
  toggle: () => void;
@@ -698,7 +769,7 @@ declare function useCrosshair(): UseCrosshairReturn;
698
769
 
699
770
  interface UseAlertsReturn {
700
771
  alerts: Alert[];
701
- addAlert: (price: number, condition: AlertCondition, message?: string) => string;
772
+ addAlert: (price: number, condition: AlertCondition, message?: string, extendData?: AlertLineExtendData) => string;
702
773
  removeAlert: (id: string) => void;
703
774
  clearAlerts: () => void;
704
775
  onAlertTriggered: (callback: (alert: Alert) => void) => void;
@@ -1026,4 +1097,4 @@ declare const superTrend: IndicatorTemplate;
1026
1097
 
1027
1098
  declare const vwap: IndicatorTemplate;
1028
1099
 
1029
- export { type AddIndicatorOptions, type Alert, type AlertCondition, type Annotation, CANDLE_TYPES, COMPARE_RULES, type CandleTypeItem, type CandleTypeOption, type ChartLayoutState, type CompareRule, type CompareSymbol, type CrosshairBarData, DEFAULT_PERIODS, DRAWING_CATEGORIES, type Datafeed, type DrawingCategoryItem, type DrawingTool, type DrawingToolCategory, type DrawingToolItem, type ExportFormat, INDICATOR_PARAMS, type IndicatorDefinition, type IndicatorInfo, type IndicatorParamConfig, type KlinechartsUIAction, type KlinechartsUIContextValue, KlinechartsUIDispatchContext, type KlinechartsUIDispatchValue, type KlinechartsUIOptions, KlinechartsUIProvider, type KlinechartsUISettingsState, type KlinechartsUIState, KlinechartsUIStateContext, type LayoutEntry, MAIN_INDICATORS, type MagnetMode, type MeasurePoint, type MeasureResult, OrderLineExtendData, type OrderLineOptions, PRICE_AXIS_TYPES, type PartialSymbolInfo, type PriceAxisType, type ReplaySpeed, SUB_INDICATORS, type ScriptPlacement, TA, TIMEZONES, TOOLTIP_SHOW_RULES, type TerminalPeriod, type TimezoneItem, type TimezoneOption, type TooltipShowRule, type UndoRedoAction, type UndoRedoActionType, type UseAlertsReturn, type UseAnnotationsReturn, type UseCompareReturn, type UseCrosshairReturn, type UseDataExportReturn, type UseDrawingToolsReturn, type UseFullscreenReturn, type UseIndicatorsReturn, type UseKlinechartsUILoadingReturn, type UseKlinechartsUISettingsReturn, type UseKlinechartsUIThemeReturn, type UseLayoutManagerReturn, type UseMeasureReturn, type UseOrderLinesReturn, type UsePeriodsReturn, type UseReplayReturn, type UseScreenshotReturn, type UseScriptEditorReturn, type UseSymbolSearchReturn, type UseTimezoneReturn, type UseUndoRedoReturn, type UseWatchlistReturn, type WatchlistItem, YAXIS_POSITIONS, type YAxisPosition, abcd, anyWaves, arrow, bollTv, brush, cci, circle, createDataLoader, eightWaves, elliottWave, fibRetracement, fibonacciCircle, fibonacciExtension, fibonacciSegment, fibonacciSpeedResistanceFan, fibonacciSpiral, fiveWaves, gannBox, gannFan, hma, ichimoku, longPosition, maRibbon, macdTv, measure, parallelChannel, parallelogram, pivotPoints, ray, rect, rsiTv, shortPosition, stochastic, superTrend, threeWaves, triangle, useAlerts, useAnnotations, useCompare, useCrosshair, useDataExport, useDrawingTools, useFullscreen, useIndicators, useKlinechartsUI, useKlinechartsUILoading, useKlinechartsUISettings, useKlinechartsUITheme, useLayoutManager, useMeasure, useOrderLines, usePeriods, useReplay, useScreenshot, useScriptEditor, useSymbolSearch, useTimezone, useUndoRedo, useWatchlist, vwap, xabcd };
1100
+ export { type AddIndicatorOptions, type Alert, type AlertCondition, AlertLineExtendData, type Annotation, CANDLE_TYPES, COMPARE_RULES, type CandleTypeItem, type CandleTypeOption, type ChartLayoutState, type CompareRule, type CompareSymbol, type CrosshairBarData, DEFAULT_PERIODS, DRAWING_CATEGORIES, type Datafeed, type DrawingCategoryItem, type DrawingTool, type DrawingToolCategory, type DrawingToolItem, type ExportFormat, INDICATOR_PARAMS, type IndicatorDefinition, type IndicatorInfo, type IndicatorParamConfig, type KlinechartsUIAction, type KlinechartsUIContextValue, KlinechartsUIDispatchContext, type KlinechartsUIDispatchValue, type KlinechartsUIOptions, KlinechartsUIProvider, type KlinechartsUISettingsState, type KlinechartsUIState, KlinechartsUIStateContext, type LayoutEntry, MAIN_INDICATORS, type MagnetMode, type MeasurePoint, type MeasureResult, OrderLineExtendData, type OrderLineOptions, PRICE_AXIS_TYPES, type PartialSymbolInfo, type PriceAxisType, type ReplaySpeed, SUB_INDICATORS, type ScriptPlacement, TA, TIMEZONES, TOOLTIP_SHOW_RULES, type TerminalPeriod, type TimezoneItem, type TimezoneOption, type TooltipShowRule, type UndoRedoAction, type UndoRedoActionType, type UseAlertsReturn, type UseAnnotationsReturn, type UseChartAxesReturn, type UseCompareReturn, type UseCrosshairReturn, type UseDataExportReturn, type UseDrawingToolsReturn, type UseFullscreenReturn, type UseHotkeysReturn, type UseIndicatorsReturn, type UseKlinechartsUILoadingReturn, type UseKlinechartsUISettingsReturn, type UseKlinechartsUIThemeReturn, type UseLayoutManagerReturn, type UseMeasureReturn, type UseOrderLinesReturn, type UsePeriodsReturn, type UseReplayReturn, type UseScreenshotReturn, type UseScriptEditorReturn, type UseSymbolSearchReturn, type UseTimezoneReturn, type UseUndoRedoReturn, type UseWatchlistReturn, type WatchlistItem, YAXIS_POSITIONS, type YAxisPosition, abcd, anyWaves, arrow, bollTv, brush, cci, circle, createDataLoader, eightWaves, elliottWave, fibRetracement, fibonacciCircle, fibonacciExtension, fibonacciSegment, fibonacciSpeedResistanceFan, fibonacciSpiral, fiveWaves, gannBox, gannFan, hma, ichimoku, longPosition, maRibbon, macdTv, measure, parallelChannel, parallelogram, pivotPoints, ray, rect, rsiTv, shortPosition, stochastic, superTrend, threeWaves, triangle, useAlerts, useAnnotations, useChartAxes, useCompare, useCrosshair, useDataExport, useDrawingTools, useFullscreen, useHotkeys, useIndicators, useKlinechartsUI, useKlinechartsUILoading, useKlinechartsUISettings, useKlinechartsUITheme, useLayoutManager, useMeasure, useOrderLines, usePeriods, useReplay, useScreenshot, useScriptEditor, useSymbolSearch, useTimezone, useUndoRedo, useWatchlist, vwap, xabcd };