fix: add beta_mode property to SystemConfig interface

🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: tinkle-community <tinklefund@gmail.com>
This commit is contained in:
icy
2025-11-02 06:31:51 +08:00
parent 3349df0a4a
commit 2d9a123a9f

View File

@@ -1,5 +1,6 @@
export interface SystemConfig {
admin_mode: boolean;
beta_mode: boolean;
}
let configPromise: Promise<SystemConfig> | null = null;