```js import { DefaultSession } from "next-auth"; declare module "next-auth" { interface Session { user?: { id: string; } & DefaultSession["user"]; } } ``` can some one explain to me whst ``& DefaultSession["user"]`` is doing?