- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
14 lines
555 B
TypeScript
14 lines
555 B
TypeScript
import { ShapeStyle } from '@antv/g6-core';
|
|
export declare const TIMELINE_START = "timebarstartplay";
|
|
export declare const TIMELINE_END = "timebarendplay";
|
|
export declare const VALUE_CHANGE = "valuechange";
|
|
export declare const TIMEBAR_CONFIG_CHANGE = "timebarConfigChanged";
|
|
export declare const PLAY_PAUSE_BTN = "playPauseBtn";
|
|
export declare const NEXT_STEP_BTN = "nextStepBtn";
|
|
export declare const PRE_STEP_BTN = "preStepBtn";
|
|
export interface ExtendedShapeStyle extends ShapeStyle {
|
|
scale?: number;
|
|
offsetX?: number;
|
|
offsetY?: number;
|
|
}
|