| 55 | // TODO: This type should be inferred from the auth package |
| 56 | declare module 'next-auth' { |
| 57 | interface Session extends DefaultSession { |
| 58 | user: { |
| 59 | id: string; |
| 60 | } & DefaultSession['user']; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | export type BaseProps = { |
nothing calls this directly
no outgoing calls
no test coverage detected