diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 682d440bd..ff60008e3 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -1861,16 +1861,10 @@ export interface ModalMessageModalSubmitInteraction; } -export interface ModalSubmitActionRow { - type: ComponentType.ActionRow; - components: ActionRow[]; -} - export class ModalSubmitInteraction extends Interaction { private constructor(client: Client, data: APIModalSubmitInteraction); public readonly customId: string; - // TODO: fix this type when #7517 is implemented - public readonly components: ModalSubmitActionRow[]; + public readonly components: ActionRow[]; public readonly fields: ModalSubmitFieldsResolver; public deferred: boolean; public ephemeral: boolean | null;