discord-api-types
Version:
Discord API typings that are kept up to date for use in bot library creation.
14 lines • 601 B
TypeScript
import type { APIGatewayBotInfo, APIGatewayInfo } from '../../payloads/v6/index';
/**
* https://discord.com/developers/docs/topics/gateway#get-gateway
*
* @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8.
*/
export type RESTGetAPIGatewayResult = APIGatewayInfo;
/**
* https://discord.com/developers/docs/topics/gateway#get-gateway-bot
*
* @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8.
*/
export type RESTGetAPIGatewayBotResult = APIGatewayBotInfo;
//# sourceMappingURL=gateway.d.ts.map