Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
function DenoKVOAuth.signOut
Re-export
import { DenoKVOAuth } from "https://deno.land/x/fathym_eac_runtime@v0.0.140/src/src.deps.ts";
const { signOut } = DenoKVOAuth;

Handles the sign-out process, and then redirects the client to the given success URL.

Examples

Example 1

import { signOut } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";

export async function signOutHandler(request: Request) {
  return await signOut(request);
}

Parameters

request: Request
optional
options: SignOutOptions