Files
lan-manager/web/node_modules/@antv/g6-plugin/lib/index.d.ts
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

33 lines
1.1 KiB
TypeScript

import Grid from './grid';
import Menu from './menu';
import Minimap from './minimap';
import Bundling from './bundling';
import Fisheye from './fisheye';
import ToolBar from './toolBar';
import Tooltip from './tooltip';
import TimeBar from './timeBar';
import ImageMinimap from './imageMinimap';
import EdgeFilterLens from './edgeFilterLens';
import SnapLine from './snapline';
import PluginBase from './base';
import Legend from './legend';
import Annotation from './annotation';
export { PluginBase, Menu, Grid, Minimap, Bundling, ToolBar, Tooltip, Fisheye, TimeBar, ImageMinimap, EdgeFilterLens, SnapLine, Legend, Annotation };
declare const Plugin: {
PluginBase: typeof PluginBase;
Menu: typeof Menu;
Grid: typeof Grid;
Minimap: typeof Minimap;
Bundling: typeof Bundling;
ToolBar: typeof ToolBar;
Tooltip: typeof Tooltip;
Fisheye: typeof Fisheye;
TimeBar: typeof TimeBar;
ImageMinimap: typeof ImageMinimap;
EdgeFilterLens: typeof EdgeFilterLens;
SnapLine: typeof SnapLine;
Legend: typeof Legend;
Annotation: typeof Annotation;
};
export default Plugin;