11 lines
409 B
TypeScript
11 lines
409 B
TypeScript
|
import type { Session } from "next-auth";
|
||
|
import type { GetSessionParams } from "next-auth/react";
|
||
|
import { getSession as getSessionInner } from "next-auth/react";
|
||
|
|
||
|
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;
|
||
|
}
|