NeahOpti/node_modules/next-auth/core/routes/signout.d.ts
2025-04-22 12:49:37 +02:00

9 lines
360 B
TypeScript

import type { InternalOptions } from "../types";
import type { ResponseInternal } from "..";
import type { SessionStore } from "../lib/cookie";
/** Handle requests to /api/auth/signout */
export default function signout(params: {
options: InternalOptions;
sessionStore: SessionStore;
}): Promise<ResponseInternal>;
//# sourceMappingURL=signout.d.ts.map