UNPKG

nralcm

Version:

This is a framework based on NodeJs to manage rest api request lifecycle

14 lines (13 loc) 309 B
import { HttpContext } from ".."; /** * Implement this interface for authentication * and authorization */ export interface IAuthHandler { /** * Method to process authentication * and authorization * @param context HttpContext Object */ handle(context: HttpContext): boolean; }