forked from klinecharts/KLineChart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
61 lines (50 loc) · 2 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { extension } from './Extension';
import {
KLineData, Precision, Viewport, Crosshair, OverlayEvent,
Coordinate, Point, DataSource
} from './Common';
import { Chart, PictureType, ChartActionType } from './Chart';
import {
ShapeMode, ShapeElementType,
ShapeDataSource, ShapeDataSourceItem,
OverrideShape, Shape, ShapeTemplate,
ShapeCheckOnParams, ShapeCreateDataSourceParams,
ShapeEventPressMoveParams, ShapeEventMoveDrawingParams,
ShapeDrawExtendParams
} from './Shape';
import {
AnnotationCheckParams,
AnnotationDrawParams,
Annotation
} from './Annotation';
import { Tag } from './Tag';
import { PaneOptions } from './Pane';
import {
TechnicalIndicatorPlotType,
TechnicalIndicatorPlotCallbackDataItem, TechnicalIndicatorPlotCallbackData,
TechnicalIndicatorPlot, TechnicalIndicatorRenderDataSource,
TechnicalIndicator, TechnicalIndicatorRenderParams, TechnicalIndicatorTemplate,
TechnicalIndicatorCreateTooltipParams, TechnicalIndicatorTooltipDataItem
} from './TechnicalIndicator';
export declare function version(): string;
export declare function init(ds: HTMLDivElement | string, style?: any): Chart | null;
export declare function dispose(dcs: HTMLDivElement | Chart | string): void;
export {
extension,
Chart, PictureType, ChartActionType, KLineData, DataSource,
Precision, Viewport, Crosshair, OverlayEvent, PaneOptions,
Coordinate, Point,
ShapeMode, ShapeElementType,
ShapeDataSource, ShapeDataSourceItem,
OverrideShape, Shape, ShapeTemplate,
ShapeCheckOnParams, ShapeCreateDataSourceParams,
ShapeEventPressMoveParams, ShapeEventMoveDrawingParams,
ShapeDrawExtendParams,
AnnotationCheckParams, AnnotationDrawParams, Annotation,
Tag,
TechnicalIndicatorPlotType,
TechnicalIndicatorPlotCallbackDataItem, TechnicalIndicatorPlotCallbackData,
TechnicalIndicatorPlot, TechnicalIndicatorRenderDataSource,
TechnicalIndicator, TechnicalIndicatorRenderParams, TechnicalIndicatorTemplate,
TechnicalIndicatorCreateTooltipParams, TechnicalIndicatorTooltipDataItem
}