mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
feat(PartialGroupDMChannel): Add recipients & fix name (#6713)
This commit is contained in:
@@ -13,7 +13,7 @@ class PartialGroupDMChannel extends Channel {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of this Group DM Channel
|
* The name of this Group DM Channel
|
||||||
* @type {string}
|
* @type {?string}
|
||||||
*/
|
*/
|
||||||
this.name = data.name;
|
this.name = data.name;
|
||||||
|
|
||||||
@@ -22,6 +22,18 @@ class PartialGroupDMChannel extends Channel {
|
|||||||
* @type {?string}
|
* @type {?string}
|
||||||
*/
|
*/
|
||||||
this.icon = data.icon;
|
this.icon = data.icon;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recipient data received in a {@link PartialGroupDMChannel}.
|
||||||
|
* @typedef {Object} PartialRecipient
|
||||||
|
* @property {string} username The username of the recipient
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The recipients of this Group DM Channel.
|
||||||
|
* @type {PartialRecipient[]}
|
||||||
|
*/
|
||||||
|
this.recipients = data.recipients;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
7
typings/index.d.ts
vendored
7
typings/index.d.ts
vendored
@@ -1510,8 +1510,9 @@ export class OAuth2Guild extends BaseGuild {
|
|||||||
|
|
||||||
export class PartialGroupDMChannel extends Channel {
|
export class PartialGroupDMChannel extends Channel {
|
||||||
public constructor(client: Client, data: RawPartialGroupDMChannelData);
|
public constructor(client: Client, data: RawPartialGroupDMChannelData);
|
||||||
public name: string;
|
public name: string | null;
|
||||||
public icon: string | null;
|
public icon: string | null;
|
||||||
|
public recipients: PartialRecipient[];
|
||||||
public iconURL(options?: StaticImageURLOptions): string | null;
|
public iconURL(options?: StaticImageURLOptions): string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4542,6 +4543,10 @@ export type RecursiveArray<T> = ReadonlyArray<T | RecursiveArray<T>>;
|
|||||||
|
|
||||||
export type RecursiveReadonlyArray<T> = ReadonlyArray<T | RecursiveReadonlyArray<T>>;
|
export type RecursiveReadonlyArray<T> = ReadonlyArray<T | RecursiveReadonlyArray<T>>;
|
||||||
|
|
||||||
|
export interface PartialRecipient {
|
||||||
|
username: string;
|
||||||
|
}
|
||||||
|
|
||||||
export type PremiumTier = keyof typeof PremiumTiers;
|
export type PremiumTier = keyof typeof PremiumTiers;
|
||||||
|
|
||||||
export interface PresenceData {
|
export interface PresenceData {
|
||||||
|
|||||||
Reference in New Issue
Block a user