@twurple/api
Version:
Interact with Twitch's API.
11 lines (10 loc) • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfigError = void 0;
const common_1 = require("@twurple/common");
/**
* Thrown whenever you try using invalid values in the client configuration.
*/
class ConfigError extends common_1.CustomError {
}
exports.ConfigError = ConfigError;