| 9 | import { randomUUID } from 'crypto'; |
| 10 | |
| 11 | interface AppxSigninResponse { |
| 12 | data: { |
| 13 | userid: string; |
| 14 | name: string; |
| 15 | username?: string; |
| 16 | token: string; |
| 17 | } | null; |
| 18 | } |
| 19 | |
| 20 | export interface session extends Session { |
| 21 | user: { |
nothing calls this directly
no outgoing calls
no test coverage detected