@foal/social
Version:
Social authentication for FoalTS
14 lines (13 loc) • 336 B
TypeScript
/**
* Error than can be thrown in `AbstractProvider.getUserFromTokens` if the request to the
* resource server is unsuccessful.
*
* @export
* @class UserInfoError
* @extends {Error}
*/
export declare class UserInfoError extends Error {
readonly error: any;
readonly name = "UserInfoError";
constructor(error: any);
}