UNPKG

@dickyindra/klinecharts

Version:

Lightweight k-line chart built with html5 canvas

10 lines (7 loc) 362 B
import { ShapeTemplate } from './Shape'; import { TechnicalIndicatorTemplate } from './TechnicalIndicator'; interface Extension { addTechnicalIndicatorTemplate: (template: TechnicalIndicatorTemplate | TechnicalIndicatorTemplate[]) => void; addShapeTemplate: (template: ShapeTemplate | ShapeTemplate[]) => void; } export declare const extension: Extension;