import type { RESTGetAPIGatewayBotResult, RESTGetAPIGatewayResult } from '../../types'; import type { RestArgumentsNoBody } from '../api'; export interface GatewayRoutes { gateway: { get(args?: RestArgumentsNoBody): Promise; bot: { get(args?: RestArgumentsNoBody): Promise; }; }; }