@mvx/identity
Version:
identity is oidc for mvc, type-mvc is base on koa. Decorator, Ioc, AOP mvc framework on server.
14 lines (13 loc) • 344 B
TypeScript
import { AuthenticationError } from './AuthenticationError';
/**
* internal oauth error.
*
* @export
* @class InternalOAuthError
* @extends {AuthenticationError}
*/
export declare class InternalOAuthError extends AuthenticationError {
oauthError: Error;
constructor(message: string, oauthError: Error);
static ρAnn(): any;
}