seyfert
Version:
The most advanced framework for discord bots
11 lines (10 loc) • 379 B
TypeScript
import type { RESTGetAPIGatewayBotResult, RESTGetAPIGatewayResult } from '../../types';
import type { RestArgumentsNoBody } from '../api';
export interface GatewayRoutes {
gateway: {
get(args?: RestArgumentsNoBody): Promise<RESTGetAPIGatewayResult>;
bot: {
get(args?: RestArgumentsNoBody): Promise<RESTGetAPIGatewayBotResult>;
};
};
}