diff options
| author | 2026-01-15 18:17:49 +0800 | |
|---|---|---|
| committer | 2026-01-15 18:17:49 +0800 | |
| commit | 314ce0e656107ab43a8e8681d85525a551f83f21 (patch) | |
| tree | 3beffaf90afc62221eca10dbfd72695800290843 /ui/src/types | |
| parent | 20cd97d8b3af67050fbe7b5f8d6d5fb1c1f3237b (diff) | |
| download | DropOut-314ce0e656107ab43a8e8681d85525a551f83f21.tar.gz DropOut-314ce0e656107ab43a8e8681d85525a551f83f21.zip | |
feat: Implement logout confirmation dialog and enhance account status display in BottomBar for improved user experience
Diffstat (limited to 'ui/src/types')
| -rw-r--r-- | ui/src/types/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/src/types/index.ts b/ui/src/types/index.ts index 09a7d5e..0f02d64 100644 --- a/ui/src/types/index.ts +++ b/ui/src/types/index.ts @@ -12,6 +12,9 @@ export interface Account { type: "Offline" | "Microsoft"; username: string; uuid: string; + access_token?: string; + refresh_token?: string; + expires_at?: number; // Unix timestamp for Microsoft accounts } export interface DeviceCodeResponse { |