valkyrie-api-types/rest/v9/gateway.ts
2024-09-12 18:00:57 +12:00

11 lines
No EOL
349 B
TypeScript

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
*/
export type RESTGetAPIGatewayBotResult = APIGatewayBotInfo;