-
Notifications
You must be signed in to change notification settings - Fork 68
/
index.js
31 lines (29 loc) · 1019 Bytes
/
index.js
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
import annotation from './src/Adapter-d3'
import { Type, d3Label, d3Callout, d3CalloutCurve, d3CalloutElbow, d3CalloutCircle,
d3CalloutRect, d3XYThreshold, d3Badge, customType } from './src/Types-d3'
export {
annotation,
Type as annotationTypeBase ,
d3Label as annotationLabel ,
d3Callout as annotationCallout ,
d3CalloutCurve as annotationCalloutCurve ,
d3CalloutElbow as annotationCalloutElbow ,
d3CalloutCircle as annotationCalloutCircle ,
d3CalloutRect as annotationCalloutRect ,
d3XYThreshold as annotationXYThreshold ,
d3Badge as annotationBadge ,
customType as annotationCustomType
}
export default {
annotation,
annotationTypeBase : Type,
annotationLabel : d3Label,
annotationCallout : d3Callout,
annotationCalloutCurve : d3CalloutCurve,
annotationCalloutElbow : d3CalloutElbow,
annotationCalloutCircle : d3CalloutCircle,
annotationCalloutRect : d3CalloutRect,
annotationXYThreshold : d3XYThreshold,
annotationBadge : d3Badge,
annotationCustomType : customType
}