Files
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

13 lines
706 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.VALUE_CHANGE = exports.TIMELINE_START = exports.TIMELINE_END = exports.TIMEBAR_CONFIG_CHANGE = exports.PRE_STEP_BTN = exports.PLAY_PAUSE_BTN = exports.NEXT_STEP_BTN = void 0;
var TIMELINE_START = exports.TIMELINE_START = 'timebarstartplay';
var TIMELINE_END = exports.TIMELINE_END = 'timebarendplay';
var VALUE_CHANGE = exports.VALUE_CHANGE = 'valuechange';
var TIMEBAR_CONFIG_CHANGE = exports.TIMEBAR_CONFIG_CHANGE = 'timebarConfigChanged';
var PLAY_PAUSE_BTN = exports.PLAY_PAUSE_BTN = 'playPauseBtn';
var NEXT_STEP_BTN = exports.NEXT_STEP_BTN = 'nextStepBtn';
var PRE_STEP_BTN = exports.PRE_STEP_BTN = 'preStepBtn';