UNPKG

@donation-alerts/auth

Version:

Authentication provider for Donation Alerts API with ability to automatically refresh user tokens.

14 lines 460 B
import { CustomError } from '@donation-alerts/common'; /** * An error indicating that a managed user is not registered in the authentication provider. */ export declare class UnregisteredUserError extends CustomError { private readonly _userId; /** @internal */ constructor(_userId: number, message: string); /** * The ID of the unregistered user. */ get userId(): number; } //# sourceMappingURL=unregistered-user.error.d.ts.map