I guess instead of this ```export async function ...
# general
m
I guess instead of this
Copy code
export 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;}