Mohammad Rizwan
06/16/2022, 9:06 PMexport async function getSession(options: GetSessionParams): Promise<Session | null> { const session = await getSessionInner(options);
// that these are equal are ensured in `[...nextauth]`'s callback return session as Session | null;}