UNPKG

@twurple/auth

Version:

Authenticate with Twitch and stop caring about refreshing tokens.

11 lines (10 loc) 262 B
import { CustomError } from '@twurple/common'; /** * Thrown whenever an invalid token is supplied. */ export class InvalidTokenError extends CustomError { /** @private */ constructor(options) { super('Invalid token supplied', options); } }