UNPKG

@leismore/authappself_handler

Version:

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

9 lines (8 loc) 408 B
/** * Generate authAppSelf_handler */ import { GeneratorHostApp } from './type/GeneratorHostApp'; import { GeneratorErrors } from './type/GeneratorErrors'; import { ExpressHandler } from './type/ExpressHandler'; declare function generator(hostApp: GeneratorHostApp, authAppSelf_api: string, errors: GeneratorErrors): ExpressHandler; export { generator, GeneratorHostApp, GeneratorErrors, ExpressHandler };