UNPKG

next-auth

Version:

Authentication for Next.js

10 lines (9 loc) 282 B
/// <reference types="react" /> import { Theme } from "../.."; import { InternalUrl } from "../../lib/parse-url"; export interface SignoutProps { url: InternalUrl; csrfToken: string; theme: Theme; } export default function SignoutPage(props: SignoutProps): JSX.Element;