dressed
Version:
A sleek, serverless-ready Discord bot framework.
10 lines (9 loc) • 508 B
TypeScript
import type { RESTGetAPIGatewayBotResult, RESTGetAPIGatewayResult } from "discord-api-types/v10";
/**
* Returns an object with a valid WSS URL which the app can use when Connecting to the Gateway.
*/
export declare function getGateway(): Promise<RESTGetAPIGatewayResult>;
/**
* Returns an object based on the information in Get Gateway, plus additional metadata that can help during the operation of large or sharded bots.
*/
export declare function getGatewayBot(): Promise<RESTGetAPIGatewayBotResult>;