mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 01:09:56 -05:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
export type AppStatus = 'booting' | 'not-configured' | 'auth' | 'ready' | 'error';
|
|
|
|
export const appState = $state({
|
|
status: 'booting' as AppStatus,
|
|
error: null as string | null,
|
|
serverUrl: '',
|
|
authenticated: false,
|
|
authMode: 'NONE' as 'NONE' | 'BASIC_AUTH' | 'UI_LOGIN',
|
|
platform: 'web' as 'web' | 'tauri' | 'capacitor',
|
|
version: '',
|
|
idle: false,
|
|
}); |