docs(InteractionResponses): Document missing properties (#6178)

This commit is contained in:
Jiralite
2021-07-28 01:30:22 +01:00
committed by GitHub
parent 9679b90872
commit 5e433b5995
2 changed files with 17 additions and 3 deletions

4
typings/index.d.ts vendored
View File

@@ -1132,8 +1132,8 @@ export class MessageComponentInteraction extends Interaction {
public followUp(options: string | MessagePayload | InteractionReplyOptions): Promise<Message | APIMessage>;
public reply(options: InteractionReplyOptions & { fetchReply: true }): Promise<Message | APIMessage>;
public reply(options: string | MessagePayload | InteractionReplyOptions): Promise<void>;
public update(content: InteractionUpdateOptions & { fetchReply: true }): Promise<Message | APIMessage>;
public update(content: string | MessagePayload | InteractionUpdateOptions): Promise<void>;
public update(options: InteractionUpdateOptions & { fetchReply: true }): Promise<Message | APIMessage>;
public update(options: string | MessagePayload | InteractionUpdateOptions): Promise<void>;
public static resolveType(type: MessageComponentTypeResolvable): MessageComponentType;
}