twitch-core
Version:
Twitch bot command client
9 lines (8 loc) • 363 B
TypeScript
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>>;
}