chore: release v2.8.12

This commit is contained in:
March 7th
2022-11-05 20:08:21 +07:00
parent 5810144d71
commit a768fbf590
3 changed files with 10 additions and 5 deletions

7
typings/index.d.ts vendored
View File

@@ -2553,7 +2553,12 @@ export class Role extends Base {
public static comparePositions(role1: Role, role2: Role): number;
}
export type SelectMenuTypes = 'STRING_SELECT_MENU' | 'USER_SELECT_MENU' | 'ROLE_SELECT_MENU' | 'MENTIONABLE_SELECT_MENU' | 'CHANNEL_SELECT_MENU';
export type SelectMenuTypes =
| 'STRING_SELECT_MENU'
| 'USER_SELECT_MENU'
| 'ROLE_SELECT_MENU'
| 'MENTIONABLE_SELECT_MENU'
| 'CHANNEL_SELECT_MENU';
export class SelectMenuInteraction<Cached extends CacheType = CacheType> extends MessageComponentInteraction<Cached> {
public constructor(client: Client, data: RawMessageSelectMenuInteractionData);