mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 17:43:30 +01:00
update some docs
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
/**
|
||||
* Represents a Message on Discord
|
||||
*/
|
||||
class Message {
|
||||
constructor(channel, data, client) {
|
||||
this.channel = channel;
|
||||
|
||||
@@ -2,6 +2,9 @@ const ServerChannel = require('./ServerChannel');
|
||||
const TextChannelDataStore = require('./datastore/TextChannelDataStore');
|
||||
const TextBasedChannel = require('./interface/TextBasedChannel');
|
||||
|
||||
/**
|
||||
* Represents a Server Text Channel on Discord.
|
||||
*/
|
||||
class TextChannel extends ServerChannel {
|
||||
|
||||
constructor(guild, data) {
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
const ServerChannel = require('./ServerChannel');
|
||||
const VoiceChannelDataStore = require('./datastore/VoiceChannelDataStore');
|
||||
|
||||
/**
|
||||
* Represents a Server Voice Channel on Discord.
|
||||
*/
|
||||
class VoiceChannel extends ServerChannel {
|
||||
constructor(guild, data) {
|
||||
super(guild, data);
|
||||
|
||||
Reference in New Issue
Block a user