Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 386 Bytes

File metadata and controls

18 lines (13 loc) · 386 Bytes

authgear_deno_hook

This Deno package assist the developer to write Deno Hooks.

https://deno.land/x/authgear_deno_hook

Usage

import {
  HookEvent,
  HookResponse,
} from "https://deno.land/x/authgear_deno_hook@v0.1.0/mod.ts";

export default async function (e: HookEvent): Promise<HookResponse> {
  // Write your hook with the help of the type definition.
}