2023-12-11 22:27:31 +08:00
|
|
|
// @ts-nocheck
|
|
|
|
|
2023-10-11 14:23:59 +08:00
|
|
|
if (window) {
|
2023-02-02 10:31:36 +08:00
|
|
|
// window.g6 = require('@antv/g6/es'); // import the source for debugging
|
2023-10-11 11:49:05 +08:00
|
|
|
window.g6 = require('@antv/g6/lib'); // import the source for debugging
|
2023-10-10 11:51:20 +08:00
|
|
|
|
2023-12-04 14:42:33 +08:00
|
|
|
window.layoutGpu = require('@antv/layout-gpu'); // import the source for debugging
|
|
|
|
window.algorithm = require('@antv/algorithm');
|
|
|
|
window.layoutWasm = require('@antv/layout-wasm'); // import the source for debugging
|
|
|
|
window.graphlib = require('@antv/graphlib');
|
2023-10-10 11:51:20 +08:00
|
|
|
|
2023-12-04 14:42:33 +08:00
|
|
|
window.g6PluginMapView = require('@antv/g6-plugin-map-view');
|
2023-10-11 11:49:05 +08:00
|
|
|
// window.g6 = require('@antv/g6/diFst/g6.min.js'); // import the package for webworker
|
|
|
|
window.insertCss = require('insert-css');
|
2023-12-04 14:42:33 +08:00
|
|
|
window.util = require('@antv/util');
|
2023-10-11 11:49:05 +08:00
|
|
|
window.stats = require('stats.js');
|
|
|
|
window.g2 = require('@antv/g2');
|
2023-12-11 22:27:31 +08:00
|
|
|
window.antd = require('antd');
|
|
|
|
|
|
|
|
window.React = require('react');
|
|
|
|
window.ReactDOM = require('react-dom');
|
|
|
|
window.g6ReactNode = require('@antv/g6-react-node');
|
2023-08-24 10:17:57 +08:00
|
|
|
}
|