File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/structures/Interaction Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,16 +119,16 @@ export function BaseInteractionResponseMixin<
119119 *
120120 */
121121 async reply (
122- options : string | ( BaseMessageOptionsWithPoll & { withResponse ?: false } )
122+ options : string | ( InteractionReplyOptions & { withResponse ?: false } )
123123 ) : Promise < undefined > ;
124124 async reply (
125- options : string | ( BaseMessageOptionsWithPoll & { withResponse : true } )
125+ options : string | ( InteractionReplyOptions & { withResponse : true } )
126126 ) : Promise < InteractionCallbackResponse > ;
127127 async reply (
128128 options :
129129 | string
130130 // | MessagePayload (to be added)
131- | ( BaseMessageOptionsWithPoll & { withResponse ?: boolean } )
131+ | ( InteractionReplyOptions & { withResponse ?: boolean } )
132132 ) : Promise < InteractionCallbackResponse | undefined > {
133133 if ( this . deferred || this . replied )
134134 throw new DiscordHttpsError (
You can’t perform that action at this time.
0 commit comments