Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: default select menu values #9867

Merged
merged 12 commits into from
Nov 12, 2023
Prev Previous commit
types: adjust channel
Jiralite authored and vladfrangu committed Nov 12, 2023
commit 256821b272e9cc8fa52bcd445471c9e3882db20d
2 changes: 1 addition & 1 deletion packages/discord.js/src/util/Util.js
Original file line number Diff line number Diff line change
@@ -414,7 +414,7 @@ function parseWebhookURL(url) {
* @typedef {Object} SupportingInteractionResolvedData
* @property {Client} client The client
* @property {Guild} [guild] A guild
* @property {BaseChannel} [channel] A channel
* @property {GuildTextBasedChannel} [channel] A channel
* @private
*/

2 changes: 1 addition & 1 deletion packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
@@ -6368,7 +6368,7 @@ export interface StageInstanceEditOptions {
export interface SupportingInteractionResolvedData {
client: Client;
guild?: Guild;
channel?: Channel;
channel?: GuildTextBasedChannel;
}

export type SweeperKey = keyof SweeperDefinitions;