| 18 | } |
| 19 | |
| 20 | export interface session extends Session { |
| 21 | user: { |
| 22 | id: string; |
| 23 | jwtToken: string; |
| 24 | role: string; |
| 25 | email: string; |
| 26 | name: string; |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | interface token extends JWT { |
| 31 | uid: string; |
nothing calls this directly
no outgoing calls
no test coverage detected