next-auth
Version:
Authentication for Next.js
9 lines (8 loc) • 330 B
TypeScript
import type { InternalOptions } from "../../lib/types";
import type { OutgoingResponse } from "..";
import type { SessionStore } from "../lib/cookie";
/** Handle requests to /api/auth/signout */
export default function signout(params: {
options: InternalOptions;
sessionStore: SessionStore;
}): Promise<OutgoingResponse>;