@antv/g6
Version:
graph visualization frame work
28 lines (22 loc) • 505 B
JavaScript
/**
* @fileOverview shape entry file
* @author huangtonger@aliyun.com
*/
var 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;