UNPKG

twitch-core

Version:
9 lines (8 loc) 363 B
import { Response, Router } from 'express'; import { TwitchCommandClient } from '../../client/TwitchCommandClient'; export declare abstract class BaseRoute { client: TwitchCommandClient; router: Router; constructor(client: TwitchCommandClient); response(res: Response, status: number, response: any): Response<any, Record<string, any>>; }