| 3 | |
| 4 | declare module "next-auth" { |
| 5 | interface User { |
| 6 | id: string; |
| 7 | usage: number; |
| 8 | stripeId: number; |
| 9 | subscription: Subscription; |
| 10 | } |
| 11 | |
| 12 | interface Session { |
| 13 | user: User; |
nothing calls this directly
no outgoing calls
no test coverage detected