From 3c59b5ac1ecbbfadd50782cfbb8d72a282ef5d9c Mon Sep 17 00:00:00 2001 From: itsMapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:39:10 -0500 Subject: [PATCH] update doc for InteractionInfo --- packages/reacord/library/reacord-client.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/reacord/library/reacord-client.ts b/packages/reacord/library/reacord-client.ts index 1d965e8..16a76e4 100644 --- a/packages/reacord/library/reacord-client.ts +++ b/packages/reacord/library/reacord-client.ts @@ -38,10 +38,11 @@ export type ReacordConfig = { * ```js * client.on("interactionCreate", (interaction) => { * if (interaction.isChatInputCommand() && interaction.commandName === "hi") { - * interaction.reply("hi lol") + * reacord.reply(interacition, "hi lol") * } * }) * ``` + * @category Core */ export type InteractionInfo = { id: string