@mvx/identity
Version:
identity is oidc for mvc, type-mvc is base on koa. Decorator, Ioc, AOP mvc framework on server.
16 lines (15 loc) • 385 B
TypeScript
import { HttpError } from '@mvx/mvc';
/**
* error.
*
* @export
* @class OIDCError
* @extends {HttpError}
*/
export declare class AuthenticationError extends HttpError {
error_description?: string | string[];
error: string;
expose: boolean;
constructor(status: number, message: string | string[], error_description?: string | string[]);
static ρAnn(): any;
}