@antv/g6
Version:
graph visualization frame work
30 lines (22 loc) • 509 B
JavaScript
/**
* @fileOverview shape entry file
* @author huangtonger@aliyun.com
*/
const Shape = require('./shape');
Shape.registerShapeManager('node', {
defaultShapeType: 'common'
});
Shape.registerShapeManager('edge', {
defaultShapeType: 'common'
});
Shape.registerShapeManager('group', {
defaultShapeType: 'common'
});
Shape.registerShapeManager('guide', {
defaultShapeType: 'common'
});
require('./nodes/');
require('./edges/');
require('./groups/');
require('./guides/');
module.exports = Shape;