UNPKG

nralcm

Version:

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

13 lines (12 loc) 416 B
import { IAuthenticate, HttpContext } from "../lifecycle"; /** * Authentication for authentication of request */ export declare class AuthenticationFilter implements IAuthenticate { /** * Method for check authentication of request * @param context HttpContext Object * @returns true, If not authenticated throws UnAuthenticateException */ authenticate(context: HttpContext): boolean; }