seedcord 0.10.2 → 0.10.3
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/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -6
- package/dist/index.d.ts +22 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1226,6 +1226,22 @@ declare enum SelectMenuType {
|
|
|
1226
1226
|
* @internal
|
|
1227
1227
|
*/
|
|
1228
1228
|
declare const InteractionMetadataKey: unique symbol;
|
|
1229
|
+
/**
|
|
1230
|
+
* Extract the event type from an InteractionHandler subclass
|
|
1231
|
+
*
|
|
1232
|
+
* Used by the interaction routing decorators.
|
|
1233
|
+
*
|
|
1234
|
+
* @internal
|
|
1235
|
+
*/
|
|
1236
|
+
type HandlerEventType<TCtor extends new (...args: any[]) => InteractionHandler<Repliables>> = InstanceType<TCtor> extends InteractionHandler<infer TEvent> ? TEvent : never;
|
|
1237
|
+
/**
|
|
1238
|
+
* Compile time assertion that the required event type(s) `TRequired` are included in the handler event union.
|
|
1239
|
+
*
|
|
1240
|
+
* Used by the interaction routing decorators.
|
|
1241
|
+
*
|
|
1242
|
+
* @internal
|
|
1243
|
+
*/
|
|
1244
|
+
type AssertHandles<TRequired, TCtor extends new (...args: any[]) => InteractionHandler<Repliables>> = Extract<HandlerEventType<TCtor>, TRequired> extends never ? Constructor<['Handler event generic must include', TRequired]> : TCtor;
|
|
1229
1245
|
/**
|
|
1230
1246
|
* Routes slash commands to handler classes
|
|
1231
1247
|
*
|
|
@@ -1258,7 +1274,7 @@ declare const InteractionMetadataKey: unique symbol;
|
|
|
1258
1274
|
* }
|
|
1259
1275
|
* ```
|
|
1260
1276
|
*/
|
|
1261
|
-
declare function SlashRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1277
|
+
declare function SlashRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ChatInputCommandInteraction, TCtor>) => void;
|
|
1262
1278
|
/**
|
|
1263
1279
|
* Routes button interactions to handler classes
|
|
1264
1280
|
*
|
|
@@ -1269,7 +1285,7 @@ declare function SlashRoute(routeOrRoutes: string | string[]): (constructor: Con
|
|
|
1269
1285
|
* @param routeOrRoutes - CustomId prefix(es) to handle
|
|
1270
1286
|
* @decorator
|
|
1271
1287
|
*/
|
|
1272
|
-
declare function ButtonRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1288
|
+
declare function ButtonRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ButtonInteraction, TCtor>) => void;
|
|
1273
1289
|
/**
|
|
1274
1290
|
* Routes modal submissions to handler classes
|
|
1275
1291
|
*
|
|
@@ -1278,7 +1294,7 @@ declare function ButtonRoute(routeOrRoutes: string | string[]): (constructor: Co
|
|
|
1278
1294
|
* @param routeOrRoutes - CustomId prefix(es) to handle
|
|
1279
1295
|
* @decorator
|
|
1280
1296
|
*/
|
|
1281
|
-
declare function ModalRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1297
|
+
declare function ModalRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ModalSubmitInteraction, TCtor>) => void;
|
|
1282
1298
|
/**
|
|
1283
1299
|
* Routes context menu commands to handler classes
|
|
1284
1300
|
*
|
|
@@ -1286,7 +1302,7 @@ declare function ModalRoute(routeOrRoutes: string | string[]): (constructor: Con
|
|
|
1286
1302
|
* @param routeOrRoutes - Command name(s) to handle
|
|
1287
1303
|
* @decorator
|
|
1288
1304
|
*/
|
|
1289
|
-
declare function ContextMenuRoute(type: 'message' | 'user', routeOrRoutes: string | string[]): (constructor:
|
|
1305
|
+
declare function ContextMenuRoute(type: 'message' | 'user', routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ContextMenuCommandInteraction, TCtor>) => void;
|
|
1290
1306
|
/**
|
|
1291
1307
|
* Routes autocomplete interactions to handler classes
|
|
1292
1308
|
*
|
|
@@ -1324,7 +1340,7 @@ type SelectMenuInteractionFor<SelectMenu extends SelectMenuType> = SelectMenu ex
|
|
|
1324
1340
|
* }
|
|
1325
1341
|
* ```
|
|
1326
1342
|
*/
|
|
1327
|
-
declare function SelectMenuRoute<SelectMenu extends SelectMenuType>(type: SelectMenu, routeOrRoutes: string | string[]): (constructor:
|
|
1343
|
+
declare function SelectMenuRoute<SelectMenu extends SelectMenuType>(type: SelectMenu, routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<SelectMenuInteractionFor<SelectMenu>, TCtor>) => void;
|
|
1328
1344
|
|
|
1329
1345
|
/**
|
|
1330
1346
|
* Middleware types supported by Seedcord
|
|
@@ -2237,4 +2253,4 @@ declare class Seedcord extends Pluggable implements Core {
|
|
|
2237
2253
|
start(): Promise<this>;
|
|
2238
2254
|
}
|
|
2239
2255
|
|
|
2240
|
-
export { type ActionRowComponentType, type AllEffects, type AssignRoleErrorCtors, type AtleastOneMessageComponent, AutocompleteHandler, type AutocompleteHandlerConstructor, AutocompleteRoute, BaseComponent, type BaseCore, BaseErrorEmbed, BaseHandler, Bot, type BotConfig, type BotEvents, type BotPermissionScope, BuilderComponent, type BuilderType, BuilderTypes, ButtonRoute, CannotAssignBotRole, CannotSendEmbedsError, Catchable, type CatchableOptions, ChannelNotFoundError, ChannelNotTextChannel, type CheckPermissionOptions, Checkable, type ClassicPayload, type CommandCtor, type CommandMeta, CommandMetadataKey, CommandRegistry, type CommandRouteString, type CommandScope, type CommandsConfig, type ComponentInteractionFor, type ComponentsV2Payload, type Config, Confirmable, type ConfirmableClassicOptions, type ConfirmableComponentsV2Options, type ConfirmableContext, type ConfirmableFactory, type ConfirmableOptions, type ConfirmablePayload, type ConfirmableResolution, type ConfirmableSharedOptions, type ContainerLike, ContextMenuRoute, type Core, CouldNotFindChannel, CustomError, type CustomErrorConstructor, type CustomIdSource, DatabaseError, type DefaultEffects, type EffectKeys, EffectMetadataKey, type EffectParams, type Effects, type EffectsConfig, EffectsEmitter, EffectsHandler, EffectsRegistry, type EmbedLike, type EmojiConfigValue, EmojiInjector, type EmojiMap, Emojis, EventCatchable, type EventCatchableOptions, EventController, EventHandler, type EventHandlerConstructor, EventMetadataKey, EventMiddleware, type EventMiddlewareConstructor, type EventSpec, type EventsConfig, type ExtractComponent, type ExtractedErrorResponse, GenericError, type GlobalMeta, type GuildMeta, type Handler, type HandlerConstructor, type HandlerCtor, type HandlerWithChecks, HasDangerousPermissions, type HasPermsToAssignOptions, type Initializeable, type InjectedEmojiMap, type InstantiatedActionRow, type InstantiatedBuilder, InteractionController, InteractionHandler, InteractionMetadataKey, InteractionMiddleware, type InteractionMiddlewareConstructor, InteractionRoutes, type InteractionsConfig, type MaybeClearedClassic, type MessageContent, Middleware, type MiddlewareConstructor, type MiddlewareMetadata, MiddlewareMetadataKey, type MiddlewareOptions, MiddlewareType, MissingPermissions, ModalRoute, type OutcomeUiClassic, type OutcomeUiV2, type PermissionErrorCtors, PermissionNames, Pluggable, Plugin, type PluginArgs, type PluginCtor, type QuestionInput, RegisterCommand, RegisterEffect, type RegisterEffectMetadataEntry, type RegisterEffectOptions, RegisterEvent, type RegisterEventMetadataEntry, type RegisterEventOptions, type RepliableEventHandler, type RepliableInteractionHandler, type Repliables, type ResolverSource, RoleDoesNotExist, RoleHigherThanMe, RowComponent, type RowLike, RowTypes, type SavedEmojiType, Seedcord, type SelectMenuInteractionFor, SelectMenuRoute, SelectMenuType, SlashRoute, UnhandledEvent, UnknownException, UserNotFound, UserNotInGuild, type ValidEventTypes, type ValidInteractionTypes, type ValidNonInteractionKeys, type ValidNonInteractionTypes, WebhookLog, type WithChecks, attemptSendDM, buildSlashRoute, checkBotPermissions, checkPermissions, ensureBotPermissions, ensurePermissions, extractErrorResponse, fetchGuildMember, fetchManyGuildMembers, fetchManyUsers, fetchRole, fetchText, fetchUser, getBotRole, hasPermsToAssign, sendInText, throwCustomError, updateMemberRoles };
|
|
2256
|
+
export { type ActionRowComponentType, type AllEffects, type AssertHandles, type AssignRoleErrorCtors, type AtleastOneMessageComponent, AutocompleteHandler, type AutocompleteHandlerConstructor, AutocompleteRoute, BaseComponent, type BaseCore, BaseErrorEmbed, BaseHandler, Bot, type BotConfig, type BotEvents, type BotPermissionScope, BuilderComponent, type BuilderType, BuilderTypes, ButtonRoute, CannotAssignBotRole, CannotSendEmbedsError, Catchable, type CatchableOptions, ChannelNotFoundError, ChannelNotTextChannel, type CheckPermissionOptions, Checkable, type ClassicPayload, type CommandCtor, type CommandMeta, CommandMetadataKey, CommandRegistry, type CommandRouteString, type CommandScope, type CommandsConfig, type ComponentInteractionFor, type ComponentsV2Payload, type Config, Confirmable, type ConfirmableClassicOptions, type ConfirmableComponentsV2Options, type ConfirmableContext, type ConfirmableFactory, type ConfirmableOptions, type ConfirmablePayload, type ConfirmableResolution, type ConfirmableSharedOptions, type ContainerLike, ContextMenuRoute, type Core, CouldNotFindChannel, CustomError, type CustomErrorConstructor, type CustomIdSource, DatabaseError, type DefaultEffects, type EffectKeys, EffectMetadataKey, type EffectParams, type Effects, type EffectsConfig, EffectsEmitter, EffectsHandler, EffectsRegistry, type EmbedLike, type EmojiConfigValue, EmojiInjector, type EmojiMap, Emojis, EventCatchable, type EventCatchableOptions, EventController, EventHandler, type EventHandlerConstructor, EventMetadataKey, EventMiddleware, type EventMiddlewareConstructor, type EventSpec, type EventsConfig, type ExtractComponent, type ExtractedErrorResponse, GenericError, type GlobalMeta, type GuildMeta, type Handler, type HandlerConstructor, type HandlerCtor, type HandlerEventType, type HandlerWithChecks, HasDangerousPermissions, type HasPermsToAssignOptions, type Initializeable, type InjectedEmojiMap, type InstantiatedActionRow, type InstantiatedBuilder, InteractionController, InteractionHandler, InteractionMetadataKey, InteractionMiddleware, type InteractionMiddlewareConstructor, InteractionRoutes, type InteractionsConfig, type MaybeClearedClassic, type MessageContent, Middleware, type MiddlewareConstructor, type MiddlewareMetadata, MiddlewareMetadataKey, type MiddlewareOptions, MiddlewareType, MissingPermissions, ModalRoute, type OutcomeUiClassic, type OutcomeUiV2, type PermissionErrorCtors, PermissionNames, Pluggable, Plugin, type PluginArgs, type PluginCtor, type QuestionInput, RegisterCommand, RegisterEffect, type RegisterEffectMetadataEntry, type RegisterEffectOptions, RegisterEvent, type RegisterEventMetadataEntry, type RegisterEventOptions, type RepliableEventHandler, type RepliableInteractionHandler, type Repliables, type ResolverSource, RoleDoesNotExist, RoleHigherThanMe, RowComponent, type RowLike, RowTypes, type SavedEmojiType, Seedcord, type SelectMenuInteractionFor, SelectMenuRoute, SelectMenuType, SlashRoute, UnhandledEvent, UnknownException, UserNotFound, UserNotInGuild, type ValidEventTypes, type ValidInteractionTypes, type ValidNonInteractionKeys, type ValidNonInteractionTypes, WebhookLog, type WithChecks, attemptSendDM, buildSlashRoute, checkBotPermissions, checkPermissions, ensureBotPermissions, ensurePermissions, extractErrorResponse, fetchGuildMember, fetchManyGuildMembers, fetchManyUsers, fetchRole, fetchText, fetchUser, getBotRole, hasPermsToAssign, sendInText, throwCustomError, updateMemberRoles };
|
package/dist/index.d.ts
CHANGED
|
@@ -1226,6 +1226,22 @@ declare enum SelectMenuType {
|
|
|
1226
1226
|
* @internal
|
|
1227
1227
|
*/
|
|
1228
1228
|
declare const InteractionMetadataKey: unique symbol;
|
|
1229
|
+
/**
|
|
1230
|
+
* Extract the event type from an InteractionHandler subclass
|
|
1231
|
+
*
|
|
1232
|
+
* Used by the interaction routing decorators.
|
|
1233
|
+
*
|
|
1234
|
+
* @internal
|
|
1235
|
+
*/
|
|
1236
|
+
type HandlerEventType<TCtor extends new (...args: any[]) => InteractionHandler<Repliables>> = InstanceType<TCtor> extends InteractionHandler<infer TEvent> ? TEvent : never;
|
|
1237
|
+
/**
|
|
1238
|
+
* Compile time assertion that the required event type(s) `TRequired` are included in the handler event union.
|
|
1239
|
+
*
|
|
1240
|
+
* Used by the interaction routing decorators.
|
|
1241
|
+
*
|
|
1242
|
+
* @internal
|
|
1243
|
+
*/
|
|
1244
|
+
type AssertHandles<TRequired, TCtor extends new (...args: any[]) => InteractionHandler<Repliables>> = Extract<HandlerEventType<TCtor>, TRequired> extends never ? Constructor<['Handler event generic must include', TRequired]> : TCtor;
|
|
1229
1245
|
/**
|
|
1230
1246
|
* Routes slash commands to handler classes
|
|
1231
1247
|
*
|
|
@@ -1258,7 +1274,7 @@ declare const InteractionMetadataKey: unique symbol;
|
|
|
1258
1274
|
* }
|
|
1259
1275
|
* ```
|
|
1260
1276
|
*/
|
|
1261
|
-
declare function SlashRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1277
|
+
declare function SlashRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ChatInputCommandInteraction, TCtor>) => void;
|
|
1262
1278
|
/**
|
|
1263
1279
|
* Routes button interactions to handler classes
|
|
1264
1280
|
*
|
|
@@ -1269,7 +1285,7 @@ declare function SlashRoute(routeOrRoutes: string | string[]): (constructor: Con
|
|
|
1269
1285
|
* @param routeOrRoutes - CustomId prefix(es) to handle
|
|
1270
1286
|
* @decorator
|
|
1271
1287
|
*/
|
|
1272
|
-
declare function ButtonRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1288
|
+
declare function ButtonRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ButtonInteraction, TCtor>) => void;
|
|
1273
1289
|
/**
|
|
1274
1290
|
* Routes modal submissions to handler classes
|
|
1275
1291
|
*
|
|
@@ -1278,7 +1294,7 @@ declare function ButtonRoute(routeOrRoutes: string | string[]): (constructor: Co
|
|
|
1278
1294
|
* @param routeOrRoutes - CustomId prefix(es) to handle
|
|
1279
1295
|
* @decorator
|
|
1280
1296
|
*/
|
|
1281
|
-
declare function ModalRoute(routeOrRoutes: string | string[]): (constructor:
|
|
1297
|
+
declare function ModalRoute(routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ModalSubmitInteraction, TCtor>) => void;
|
|
1282
1298
|
/**
|
|
1283
1299
|
* Routes context menu commands to handler classes
|
|
1284
1300
|
*
|
|
@@ -1286,7 +1302,7 @@ declare function ModalRoute(routeOrRoutes: string | string[]): (constructor: Con
|
|
|
1286
1302
|
* @param routeOrRoutes - Command name(s) to handle
|
|
1287
1303
|
* @decorator
|
|
1288
1304
|
*/
|
|
1289
|
-
declare function ContextMenuRoute(type: 'message' | 'user', routeOrRoutes: string | string[]): (constructor:
|
|
1305
|
+
declare function ContextMenuRoute(type: 'message' | 'user', routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<ContextMenuCommandInteraction, TCtor>) => void;
|
|
1290
1306
|
/**
|
|
1291
1307
|
* Routes autocomplete interactions to handler classes
|
|
1292
1308
|
*
|
|
@@ -1324,7 +1340,7 @@ type SelectMenuInteractionFor<SelectMenu extends SelectMenuType> = SelectMenu ex
|
|
|
1324
1340
|
* }
|
|
1325
1341
|
* ```
|
|
1326
1342
|
*/
|
|
1327
|
-
declare function SelectMenuRoute<SelectMenu extends SelectMenuType>(type: SelectMenu, routeOrRoutes: string | string[]): (constructor:
|
|
1343
|
+
declare function SelectMenuRoute<SelectMenu extends SelectMenuType>(type: SelectMenu, routeOrRoutes: string | string[]): <TCtor extends new (...args: any[]) => InteractionHandler<Repliables>>(constructor: AssertHandles<SelectMenuInteractionFor<SelectMenu>, TCtor>) => void;
|
|
1328
1344
|
|
|
1329
1345
|
/**
|
|
1330
1346
|
* Middleware types supported by Seedcord
|
|
@@ -2237,4 +2253,4 @@ declare class Seedcord extends Pluggable implements Core {
|
|
|
2237
2253
|
start(): Promise<this>;
|
|
2238
2254
|
}
|
|
2239
2255
|
|
|
2240
|
-
export { type ActionRowComponentType, type AllEffects, type AssignRoleErrorCtors, type AtleastOneMessageComponent, AutocompleteHandler, type AutocompleteHandlerConstructor, AutocompleteRoute, BaseComponent, type BaseCore, BaseErrorEmbed, BaseHandler, Bot, type BotConfig, type BotEvents, type BotPermissionScope, BuilderComponent, type BuilderType, BuilderTypes, ButtonRoute, CannotAssignBotRole, CannotSendEmbedsError, Catchable, type CatchableOptions, ChannelNotFoundError, ChannelNotTextChannel, type CheckPermissionOptions, Checkable, type ClassicPayload, type CommandCtor, type CommandMeta, CommandMetadataKey, CommandRegistry, type CommandRouteString, type CommandScope, type CommandsConfig, type ComponentInteractionFor, type ComponentsV2Payload, type Config, Confirmable, type ConfirmableClassicOptions, type ConfirmableComponentsV2Options, type ConfirmableContext, type ConfirmableFactory, type ConfirmableOptions, type ConfirmablePayload, type ConfirmableResolution, type ConfirmableSharedOptions, type ContainerLike, ContextMenuRoute, type Core, CouldNotFindChannel, CustomError, type CustomErrorConstructor, type CustomIdSource, DatabaseError, type DefaultEffects, type EffectKeys, EffectMetadataKey, type EffectParams, type Effects, type EffectsConfig, EffectsEmitter, EffectsHandler, EffectsRegistry, type EmbedLike, type EmojiConfigValue, EmojiInjector, type EmojiMap, Emojis, EventCatchable, type EventCatchableOptions, EventController, EventHandler, type EventHandlerConstructor, EventMetadataKey, EventMiddleware, type EventMiddlewareConstructor, type EventSpec, type EventsConfig, type ExtractComponent, type ExtractedErrorResponse, GenericError, type GlobalMeta, type GuildMeta, type Handler, type HandlerConstructor, type HandlerCtor, type HandlerWithChecks, HasDangerousPermissions, type HasPermsToAssignOptions, type Initializeable, type InjectedEmojiMap, type InstantiatedActionRow, type InstantiatedBuilder, InteractionController, InteractionHandler, InteractionMetadataKey, InteractionMiddleware, type InteractionMiddlewareConstructor, InteractionRoutes, type InteractionsConfig, type MaybeClearedClassic, type MessageContent, Middleware, type MiddlewareConstructor, type MiddlewareMetadata, MiddlewareMetadataKey, type MiddlewareOptions, MiddlewareType, MissingPermissions, ModalRoute, type OutcomeUiClassic, type OutcomeUiV2, type PermissionErrorCtors, PermissionNames, Pluggable, Plugin, type PluginArgs, type PluginCtor, type QuestionInput, RegisterCommand, RegisterEffect, type RegisterEffectMetadataEntry, type RegisterEffectOptions, RegisterEvent, type RegisterEventMetadataEntry, type RegisterEventOptions, type RepliableEventHandler, type RepliableInteractionHandler, type Repliables, type ResolverSource, RoleDoesNotExist, RoleHigherThanMe, RowComponent, type RowLike, RowTypes, type SavedEmojiType, Seedcord, type SelectMenuInteractionFor, SelectMenuRoute, SelectMenuType, SlashRoute, UnhandledEvent, UnknownException, UserNotFound, UserNotInGuild, type ValidEventTypes, type ValidInteractionTypes, type ValidNonInteractionKeys, type ValidNonInteractionTypes, WebhookLog, type WithChecks, attemptSendDM, buildSlashRoute, checkBotPermissions, checkPermissions, ensureBotPermissions, ensurePermissions, extractErrorResponse, fetchGuildMember, fetchManyGuildMembers, fetchManyUsers, fetchRole, fetchText, fetchUser, getBotRole, hasPermsToAssign, sendInText, throwCustomError, updateMemberRoles };
|
|
2256
|
+
export { type ActionRowComponentType, type AllEffects, type AssertHandles, type AssignRoleErrorCtors, type AtleastOneMessageComponent, AutocompleteHandler, type AutocompleteHandlerConstructor, AutocompleteRoute, BaseComponent, type BaseCore, BaseErrorEmbed, BaseHandler, Bot, type BotConfig, type BotEvents, type BotPermissionScope, BuilderComponent, type BuilderType, BuilderTypes, ButtonRoute, CannotAssignBotRole, CannotSendEmbedsError, Catchable, type CatchableOptions, ChannelNotFoundError, ChannelNotTextChannel, type CheckPermissionOptions, Checkable, type ClassicPayload, type CommandCtor, type CommandMeta, CommandMetadataKey, CommandRegistry, type CommandRouteString, type CommandScope, type CommandsConfig, type ComponentInteractionFor, type ComponentsV2Payload, type Config, Confirmable, type ConfirmableClassicOptions, type ConfirmableComponentsV2Options, type ConfirmableContext, type ConfirmableFactory, type ConfirmableOptions, type ConfirmablePayload, type ConfirmableResolution, type ConfirmableSharedOptions, type ContainerLike, ContextMenuRoute, type Core, CouldNotFindChannel, CustomError, type CustomErrorConstructor, type CustomIdSource, DatabaseError, type DefaultEffects, type EffectKeys, EffectMetadataKey, type EffectParams, type Effects, type EffectsConfig, EffectsEmitter, EffectsHandler, EffectsRegistry, type EmbedLike, type EmojiConfigValue, EmojiInjector, type EmojiMap, Emojis, EventCatchable, type EventCatchableOptions, EventController, EventHandler, type EventHandlerConstructor, EventMetadataKey, EventMiddleware, type EventMiddlewareConstructor, type EventSpec, type EventsConfig, type ExtractComponent, type ExtractedErrorResponse, GenericError, type GlobalMeta, type GuildMeta, type Handler, type HandlerConstructor, type HandlerCtor, type HandlerEventType, type HandlerWithChecks, HasDangerousPermissions, type HasPermsToAssignOptions, type Initializeable, type InjectedEmojiMap, type InstantiatedActionRow, type InstantiatedBuilder, InteractionController, InteractionHandler, InteractionMetadataKey, InteractionMiddleware, type InteractionMiddlewareConstructor, InteractionRoutes, type InteractionsConfig, type MaybeClearedClassic, type MessageContent, Middleware, type MiddlewareConstructor, type MiddlewareMetadata, MiddlewareMetadataKey, type MiddlewareOptions, MiddlewareType, MissingPermissions, ModalRoute, type OutcomeUiClassic, type OutcomeUiV2, type PermissionErrorCtors, PermissionNames, Pluggable, Plugin, type PluginArgs, type PluginCtor, type QuestionInput, RegisterCommand, RegisterEffect, type RegisterEffectMetadataEntry, type RegisterEffectOptions, RegisterEvent, type RegisterEventMetadataEntry, type RegisterEventOptions, type RepliableEventHandler, type RepliableInteractionHandler, type Repliables, type ResolverSource, RoleDoesNotExist, RoleHigherThanMe, RowComponent, type RowLike, RowTypes, type SavedEmojiType, Seedcord, type SelectMenuInteractionFor, SelectMenuRoute, SelectMenuType, SlashRoute, UnhandledEvent, UnknownException, UserNotFound, UserNotInGuild, type ValidEventTypes, type ValidInteractionTypes, type ValidNonInteractionKeys, type ValidNonInteractionTypes, WebhookLog, type WithChecks, attemptSendDM, buildSlashRoute, checkBotPermissions, checkPermissions, ensureBotPermissions, ensurePermissions, extractErrorResponse, fetchGuildMember, fetchManyGuildMembers, fetchManyUsers, fetchRole, fetchText, fetchUser, getBotRole, hasPermsToAssign, sendInText, throwCustomError, updateMemberRoles };
|