aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/types/index.ts
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-15 18:17:49 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-15 18:17:49 +0800
commit314ce0e656107ab43a8e8681d85525a551f83f21 (patch)
tree3beffaf90afc62221eca10dbfd72695800290843 /ui/src/types/index.ts
parent20cd97d8b3af67050fbe7b5f8d6d5fb1c1f3237b (diff)
downloadDropOut-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/index.ts')
-rw-r--r--ui/src/types/index.ts3
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 {