UNPKG

nralcm

Version:

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

13 lines (12 loc) 312 B
import { HttpContext } from ".."; /** * Interface for implementation of Authentication */ export interface IAuthenticate { /** * Method to check authentication of request * @param context HttpContext Object * @returns true or false */ authenticate(context: HttpContext): boolean; }