Skip to main content
Latest
interface HelperFunctionsFromHelperPlugin
import { type HelperFunctionsFromHelperPlugin } from "https://deno.land/x/discordeno@18.0.1/plugins/mod.ts";

Properties

helpers: FinalHelpers & { fetchAndRetrieveMembers: (guildId: BigString) => Promise<Collection<bigint, Member>>; sendDirectMessage: (userId: BigString, content: string | CreateMessage) => Promise<Message>; sendTextMessage: (channelId: BigString, content: string | CreateMessage) => Promise<Message>; sendPrivateInteractionResponse: (
token: string,
) => Promise<void>; suppressEmbeds: (channelId: BigString, messageId: BigString) => Promise<Message>; archiveThread: (threadId: BigString) => Promise<Channel>; unarchiveThread: (threadId: BigString) => Promise<Channel>; lockThread: (threadId: BigString) => Promise<Channel>; unlockThread: (threadId: BigString) => Promise<Channel>; editThread: (
threadId: BigString,
options: ModifyThread,
reason?: string,
) => Promise<Channel>; cloneChannel: (channel: Channel, reason?: string) => Promise<Channel>; sendAutocompleteChoices: (
interactionId: BigString,
interactionToken: string,
) => Promise<void>; disconnectMember: (guildId: BigString, memberId: BigString) => Promise<Member>; getMembersPaginated: (guildId: BigString, options: ListGuildMembers) => Promise<Collection<bigint, Member>>; moveMember: (
guildId: BigString,
memberId: BigString,
channelId: BigString,
) => Promise<Member>; }