Skip to main content
Module

x/alosaur/src/security/authorization/src/auth-policy.model.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import { SecurityContext } from "../../context/security-context.ts";
export type AuthPolicy = ( context: SecurityContext,) => Promise<boolean> | boolean;