mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
feat(BaseInteraction): add attachmentSizeLimit (#10830)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
@@ -121,6 +121,12 @@ class BaseInteraction extends Base {
|
|||||||
* @type {?InteractionContextType}
|
* @type {?InteractionContextType}
|
||||||
*/
|
*/
|
||||||
this.context = data.context ?? null;
|
this.context = data.context ?? null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attachment size limit in bytes
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.attachmentSizeLimit = data.attachment_size_limit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
1
packages/discord.js/typings/index.d.ts
vendored
1
packages/discord.js/typings/index.d.ts
vendored
@@ -1819,6 +1819,7 @@ export class BaseInteraction<Cached extends CacheType = CacheType> extends Base
|
|||||||
public locale: Locale;
|
public locale: Locale;
|
||||||
public guildLocale: CacheTypeReducer<Cached, Locale>;
|
public guildLocale: CacheTypeReducer<Cached, Locale>;
|
||||||
public entitlements: Collection<Snowflake, Entitlement>;
|
public entitlements: Collection<Snowflake, Entitlement>;
|
||||||
|
public attachmentSizeLimit: number;
|
||||||
public inGuild(): this is BaseInteraction<'raw' | 'cached'>;
|
public inGuild(): this is BaseInteraction<'raw' | 'cached'>;
|
||||||
public inCachedGuild(): this is BaseInteraction<'cached'>;
|
public inCachedGuild(): this is BaseInteraction<'cached'>;
|
||||||
public inRawGuild(): this is BaseInteraction<'raw'>;
|
public inRawGuild(): this is BaseInteraction<'raw'>;
|
||||||
|
|||||||
Reference in New Issue
Block a user