@leismore/authappself_handler
Version:
An Express.js HTTP handler of authentication and authorization services for self-owned LMOS (NodeJS) applications.
12 lines (11 loc) • 315 B
TypeScript
/**
* AASHError is the Error class for this project.
* Refer to @leismore/lmerror <https://www.npmjs.com/package/@leismore/lmerror>
*
* Code Message
* 1 invalid credential
*/
import { LMError } from '@leismore/lmerror';
declare class AASHError extends LMError {
}
export { AASHError };