mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* fix(core): fix inconsistencies on `core` * fix: add `createForumPost` back * fix: create -> createWebhook
19 lines
644 B
TypeScript
19 lines
644 B
TypeScript
/* eslint-disable jsdoc/check-param-names */
|
|
|
|
import type { RequestData, REST } from '@discordjs/rest';
|
|
import { Routes, type RESTGetAPIVoiceRegionsResult } from 'discord-api-types/v10';
|
|
|
|
export class VoiceAPI {
|
|
public constructor(private readonly rest: REST) {}
|
|
|
|
/**
|
|
* Fetches all voice regions
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/voice#list-voice-regions}
|
|
* @param options - The options for fetching the voice regions
|
|
*/
|
|
public async getVoiceRegions({ signal }: Pick<RequestData, 'signal'> = {}) {
|
|
return this.rest.get(Routes.voiceRegions(), { signal }) as Promise<RESTGetAPIVoiceRegionsResult>;
|
|
}
|
|
}
|