import type { BushApplicationCommand, BushCategoryChannel, BushDMChannel, BushGuild, BushGuildEmoji, BushGuildMember, BushMessage, BushNewsChannel, BushReactionEmoji, BushRole, BushStageChannel, BushTextChannel, BushThreadChannel, BushThreadMember, BushUser, BushVoiceChannel, PartialBushDMChannel } from '#lib'; import { APIMessage } from 'discord-api-types/v10'; import type { ApplicationCommandResolvable, CacheType, CacheTypeReducer, ChannelResolvable, ChannelType, Collection, EmojiIdentifierResolvable, EmojiResolvable, FetchedThreads, GuildChannelResolvable, GuildMemberResolvable, GuildTextChannelResolvable, MessageResolvable, PartialGroupDMChannel, RoleResolvable, Snowflake, ThreadChannelResolvable, ThreadMemberResolvable, UserResolvable } from 'discord.js'; /** * Data that resolves to give a ThreadMember object. */ export type BushThreadMemberResolvable = ThreadMemberResolvable | BushThreadMember | BushUserResolvable; /** * Data that resolves to give a User object. */ export type BushUserResolvable = UserResolvable | BushUser | Snowflake | BushMessage | BushGuildMember | BushThreadMember; /** * Data that resolves to give a GuildMember object. */ export type BushGuildMemberResolvable = GuildMemberResolvable | BushGuildMember | BushUserResolvable; /** * Data that can be resolved to a Role object. */ export type BushRoleResolvable = RoleResolvable | BushRole | Snowflake; /** * Data that can be resolved to a Message object. */ export type BushMessageResolvable = MessageResolvable | BushMessage | Snowflake; /** * Data that can be resolved into a GuildEmoji object. */ export type BushEmojiResolvable = EmojiResolvable | Snowflake | BushGuildEmoji | BushReactionEmoji; /** * Data that can be resolved to give an emoji identifier. This can be: * * The unicode representation of an emoji * * The ``, `<:name:id>`, `a:name:id` or `name:id` emoji identifier string of an emoji * * An EmojiResolvable */ export type BushEmojiIdentifierResolvable = EmojiIdentifierResolvable | string | BushEmojiResolvable; /** * Data that can be resolved to a Thread Channel object. */ export type BushThreadChannelResolvable = ThreadChannelResolvable | BushThreadChannel | Snowflake; /** * Data that resolves to give an ApplicationCommand object. */ export type BushApplicationCommandResolvable = ApplicationCommandResolvable | BushApplicationCommand | Snowflake; /** * Data that can be resolved to a GuildTextChannel object. */ export type BushGuildTextChannelResolvable = GuildTextChannelResolvable | BushTextChannel | BushNewsChannel | Snowflake; /** * Data that can be resolved to give a Channel object. */ export type BushChannelResolvable = ChannelResolvable | BushAnyChannel | Snowflake; /** * Data that can be resolved to give a Guild Channel object. */ export type BushGuildChannelResolvable = GuildChannelResolvable | Snowflake | BushGuildBasedChannel; export type BushAnyChannel = | BushCategoryChannel | BushDMChannel | PartialBushDMChannel | PartialGroupDMChannel | BushNewsChannel | BushStageChannel | BushTextChannel | BushThreadChannel | BushVoiceChannel; /** * The channels that are text-based. */ export type BushTextBasedChannel = | BushDMChannel | PartialBushDMChannel | BushNewsChannel | BushTextChannel | BushThreadChannel | BushVoiceChannel; /** * The types of channels that are text-based. */ export type BushTextBasedChannelTypes = BushTextBasedChannel['type']; export type BushVoiceBasedChannel = Extract; export type BushGuildBasedChannel = Extract; export type BushNonCategoryGuildBasedChannel = Exclude; export type BushNonThreadGuildBasedChannel = Exclude; export type BushGuildTextBasedChannel = Extract; /** * Data that can be resolved to a Text Channel object. */ export type BushTextChannelResolvable = Snowflake | BushTextChannel; /** * Data that can be resolved to a GuildVoiceChannel object. */ export type BushGuildVoiceChannelResolvable = BushVoiceBasedChannel | Snowflake; export interface BushMappedChannelCategoryTypes { [ChannelType.GuildNews]: BushNewsChannel; [ChannelType.GuildVoice]: BushVoiceChannel; [ChannelType.GuildText]: BushTextChannel; [ChannelType.GuildStageVoice]: BushStageChannel; [ChannelType.GuildForum]: never; // TODO: Fix when guild forums come out } export type BushMappedGuildChannelTypes = { [ChannelType.GuildCategory]: BushCategoryChannel; } & BushMappedChannelCategoryTypes; /** * The data returned from a thread fetch that returns multiple threads. */ export interface BushFetchedThreads extends FetchedThreads { /** * The threads that were fetched, with any members returned */ threads: Collection; /** * Whether there are potentially additional threads that require a subsequent call */ hasMore?: boolean; } export type BushGuildCacheMessage = CacheTypeReducer< Cached, BushMessage, APIMessage, BushMessage | APIMessage, BushMessage | APIMessage >; export { ApplicationCommandOptionType as SlashType } from 'discord.js';