-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
38 lines (34 loc) · 871 Bytes
/
index.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
/**
* Author: Thomas Goodwin
* Company: Geon Technologies, LLC
*
* Note: Utility classes and enumerations for making TS development a bit
* cleaner since the current exposed sigplot interface is a mix of string
* and numeric enumerations at this time.
*/
// Helper classes
export { ConstructorOptions } from './constructor-options';
export { SettingsOptions } from './settings-options';
export { AxisSettings } from './axis-settings';
// Basic plot and data
export { BasePlot } from './base-plot';
export { PlotData } from './plot-data';
// From sigplot
export {
IConstructorOptions,
IGridStyle,
IPlotColors,
ISettingsOptions
} from './sigplot';
// All the enumerations
export {
AutoScale,
CMode,
DrawMode,
LineType,
Origin,
PHUnits,
RubberboxAction,
RubberboxMode,
XCNT
} from './enums/index';