@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
16 lines (15 loc) • 479 B
TypeScript
import { Overwrite, Guild, IVoiceChannel, EvolveClient } from "../..";
import { Objex } from "@evolvejs/objex";
import { Channel } from "./Channel";
export declare class VoiceChannel extends Channel {
overwrites: Objex<string, Overwrite>;
guildId?: Guild;
position: number;
name: string;
bitrate: number;
userLimit: number;
parentId?: string;
data: IVoiceChannel;
constructor(data: IVoiceChannel, client: EvolveClient);
private _handle;
}