UNPKG

twitch-api-ts

Version:

Modern wrapper for the Twitch API with typings.

13 lines (10 loc) 234 B
export class TwitchAPIException extends Error { private readonly status: number; constructor(status: number, message: string) { super(message); this.status = status; } getStatusCode() { return this.status; } }