build: bump dependencies (#10671)

This commit is contained in:
Almeida
2024-12-31 20:31:34 +00:00
committed by GitHub
parent b854c7b979
commit a6685a319e
50 changed files with 6454 additions and 6907 deletions

View File

@@ -7,7 +7,7 @@ import { ComponentBuilder } from '../Component.js';
* A builder that creates API-compatible JSON data for buttons.
*/
export abstract class BaseButtonBuilder<ButtonData extends APIButtonComponent> extends ComponentBuilder<ButtonData> {
protected declare readonly data: Partial<ButtonData>;
declare protected readonly data: Partial<ButtonData>;
/**
* Sets whether this button is disabled.

View File

@@ -4,7 +4,7 @@ export interface EmojiOrLabelButtonData
extends Pick<Exclude<APIButtonComponent, APIButtonComponentWithSKUId>, 'emoji' | 'label'> {}
export class EmojiOrLabelButtonMixin {
protected declare readonly data: EmojiOrLabelButtonData;
declare protected readonly data: EmojiOrLabelButtonData;
/**
* Sets the emoji to display on this button.