UNPKG

@leismore/authappself_handler

Version:

An Express.js HTTP handler of authentication and authorization services for self-owned LMOS (NodeJS) applications.

8 lines (7 loc) 235 B
/** * parse_httpAuth function: Parse HTTP Authorization header. * @throw {AASHError} */ import { AuthenInputs } from './type/AuthenInputs'; declare function parse_httpAuth(httpAuth: string): AuthenInputs; export { parse_httpAuth };