File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { hsl as d3Hsl, HSLColor } from 'd3-color'
22
33import { GraphTypeBuilder } from './graph-types/types'
44
5- type TGlobals = {
5+ export type TGlobals = {
66 COLORS : Array < HSLColor >
77 DEFAULT_WIDTH : number
88 DEFAULT_HEIGHT : number
Original file line number Diff line number Diff line change 11import './polyfills'
22
33import { FunctionPlotOptions } from './types'
4- import { Chart } from './chart'
4+ import { Chart , ChartMeta , ChartMetaMargin } from './chart'
55
66import globals , { registerGraphType } from './globals'
77import { polyline , interval , scatter , text } from './graph-types'
@@ -39,12 +39,14 @@ functionPlot.$eval = $eval
3939functionPlot . graphTypes = { interval, polyline, scatter }
4040
4141export * from './types'
42- export { Chart }
42+ export { Chart , ChartMeta , ChartMetaMargin }
4343export { registerGraphType }
4444export { builtIn as EvalBuiltIn , interval as EvalInterval } from './helpers/eval'
45+ export { TGlobals } from './globals'
4546export {
4647 interval as GraphTypeInterval ,
4748 polyline as GraphTypePolyline ,
4849 scatter as GraphTypeScatter
4950} from './graph-types'
51+ export { GraphTypePlotter , GraphTypeBuilder } from './graph-types/types'
5052export * from './helpers'
You can’t perform that action at this time.
0 commit comments