UNPKG

352 BJavaScriptView Raw
1/**
2 * @fileOverview Interaction
3 * @author leungwensen@gmail.com
4 */
5
6const Interactions = {
7 Base: require('./base'),
8 Brush: require('./brush'),
9 Drag: require('./drag'),
10 ShapeSelect: require('./shapeSelect'),
11 Zoom: require('./zoom'),
12 helper: {
13 bindInteraction: require('./helper/bindInteraction')
14 }
15};
16
17module.exports = Interactions;
\No newline at end of file