diff --git a/library/core/reacord.ts b/library/core/reacord.ts index 92e25a0..0760baa 100644 --- a/library/core/reacord.ts +++ b/library/core/reacord.ts @@ -26,12 +26,8 @@ export abstract class Reacord { constructor(private readonly config: ReacordConfig = {}) {} - abstract send(channel: unknown, initialContent?: ReactNode): ReacordInstance - - abstract reply( - commandInteraction: unknown, - initialContent?: ReactNode, - ): ReacordInstance + abstract send(...args: unknown[]): ReacordInstance + abstract reply(...args: unknown[]): ReacordInstance protected handleComponentInteraction(interaction: ComponentInteraction) { for (const renderer of this.renderers) {