valkyrie-api-types/rest/v9/gateway.ts

12 lines
350 B
TypeScript
Raw Normal View History

2024-09-11 23:00:57 -07:00
import type { APIGatewayBotInfo, APIGatewayInfo } from '../../payloads/v9/index';
/**
* https://discord.com/developers/docs/topics/gateway#get-gateway
*/
export type RESTGetAPIGatewayResult = APIGatewayInfo;
/**
* https://discord.com/developers/docs/topics/gateway#get-gateway-bot
*/
2024-09-12 00:14:45 -07:00
export type RESTGetAPIGatewayBotResult = APIGatewayBotInfo;