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