@antv/g6-pc
Version:
A Graph Visualization Framework in JavaScript
23 lines (22 loc) • 528 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.LAYOUT_MESSAGE = void 0;
/**
* @fileoverview constants for layout
* @author changzhe.zb@antfin.com
*/
/** layout message type */
var LAYOUT_MESSAGE = exports.LAYOUT_MESSAGE = {
// run layout
RUN: 'LAYOUT_RUN',
// layout ended with success
END: 'LAYOUT_END',
// layout error
ERROR: 'LAYOUT_ERROR',
// layout tick, used in force directed layout
TICK: 'LAYOUT_TICK',
GPURUN: 'GPU_LAYOUT_RUN',
GPUEND: 'GPU_LAYOUT_END'
};