cordo 1.14.3 → 1.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/base.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/base.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ export type ModalSubmitInteraction = InteractionBase & (InteractionLocationGuild
|
|
|
251
251
|
export type SlottedContext = {
|
|
252
252
|
params: Record<string, string>;
|
|
253
253
|
};
|
|
254
|
-
export type SlotableInteraction =
|
|
254
|
+
export type SlotableInteraction = GenericInteraction & SlottedContext;
|
|
255
255
|
export type ReplyableCommandInteraction = CommandInteraction & Partial<SlottedContext> & {
|
|
256
256
|
defer(privately?: boolean): Promise<InteractionCallbackFollowup>;
|
|
257
257
|
reply(data: InteractionApplicationCommandCallbackData): Promise<InteractionCallbackFollowup>;
|