mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 03:23:29 +01:00
fix(StickerPack): Nullify bannerId (#7119)
This commit is contained in:
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
@@ -2102,7 +2102,7 @@ export class StickerPack extends Base {
|
||||
private constructor(client: Client, data: RawStickerPackData);
|
||||
public readonly createdTimestamp: number;
|
||||
public readonly createdAt: Date;
|
||||
public bannerId: Snowflake;
|
||||
public bannerId: Snowflake | null;
|
||||
public readonly coverSticker: Sticker | null;
|
||||
public coverStickerId: Snowflake | null;
|
||||
public description: string;
|
||||
@@ -2110,7 +2110,7 @@ export class StickerPack extends Base {
|
||||
public name: string;
|
||||
public skuId: Snowflake;
|
||||
public stickers: Collection<Snowflake, Sticker>;
|
||||
public bannerURL(options?: StaticImageURLOptions): string;
|
||||
public bannerURL(options?: StaticImageURLOptions): string | null;
|
||||
}
|
||||
|
||||
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */
|
||||
|
||||
Reference in New Issue
Block a user