Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
function signOut
Re-export
import { signOut } from "https://deno.land/x/fathym_everything_as_code@v0.0.396/src/deno.deps.ts";

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