mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
docs(Message): add NewsChannel type to Message#channel (#4680)
This commit is contained in:
parent
c55b5c8c19
commit
b0e53e9c6d
2 changed files with 3 additions and 3 deletions
|
|
@ -23,14 +23,14 @@ class Message extends Base {
|
|||
/**
|
||||
* @param {Client} client The instantiating client
|
||||
* @param {Object} data The data for the message
|
||||
* @param {TextChannel|DMChannel} channel The channel the message was sent in
|
||||
* @param {TextChannel|DMChannel|NewsChannel} channel The channel the message was sent in
|
||||
*/
|
||||
constructor(client, data, channel) {
|
||||
super(client);
|
||||
|
||||
/**
|
||||
* The channel that the message was sent in
|
||||
* @type {TextChannel|DMChannel}
|
||||
* @type {TextChannel|DMChannel|NewsChannel}
|
||||
*/
|
||||
this.channel = channel;
|
||||
|
||||
|
|
|
|||
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
|
|
@ -929,7 +929,7 @@ declare module 'discord.js' {
|
|||
}
|
||||
|
||||
export class Message extends Base {
|
||||
constructor(client: Client, data: object, channel: TextChannel | DMChannel);
|
||||
constructor(client: Client, data: object, channel: TextChannel | DMChannel | NewsChannel);
|
||||
private _edits: Message[];
|
||||
private patch(data: object): void;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue