| 17 | */ |
| 18 | declare module 'next-auth' { |
| 19 | interface Session extends DefaultSession { |
| 20 | user: { |
| 21 | id: string |
| 22 | // ...other properties |
| 23 | // role: UserRole; |
| 24 | } & DefaultSession['user'] |
| 25 | } |
| 26 | |
| 27 | // interface User { |
| 28 | // // ...other properties |
nothing calls this directly
no outgoing calls
no test coverage detected