diff options
| author | 2026-01-15 20:48:39 +0800 | |
|---|---|---|
| committer | 2026-01-15 20:48:39 +0800 | |
| commit | 5931daf9283478f49652098c3e0f6be8de0f52f8 (patch) | |
| tree | d150c7733d039d71e40a9d3298952a4627fe2584 /ui/src/types | |
| parent | 32a9aceee42a2261b64f9e6effda522639576a5e (diff) | |
| parent | 959d1c54e6b5b101b20c027d547707a40ab0a29b (diff) | |
| download | DropOut-5931daf9283478f49652098c3e0f6be8de0f52f8.tar.gz DropOut-5931daf9283478f49652098c3e0f6be8de0f52f8.zip | |
Merge pull request #32 from HsiangNianian/main
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 { |