@twurple/auth
Version:
Authenticate with Twitch and stop caring about refreshing tokens.
11 lines (10 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidTokenTypeError = void 0;
const common_1 = require("@twurple/common");
/**
* Thrown whenever a different token type (user vs. app) is expected in the method you're calling.
*/
class InvalidTokenTypeError extends common_1.CustomError {
}
exports.InvalidTokenTypeError = InvalidTokenTypeError;