UNPKG

next-bungie-auth

Version:

Next Bungie Auth is an open source Next.js library that provides a configurable solution for authenticating your users with Bungie.net

10 lines (9 loc) 254 B
export class BungieAuthorizationError extends Error { error; error_description; constructor(error, error_description) { super(error_description); this.error = error; this.error_description = error_description; } }