- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
33 lines
1.1 KiB
TypeScript
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;
|