Skip to main content
Extremely Popular
Go to Latest
interface HelperFunctionsFromHelperPlugin
import { type HelperFunctionsFromHelperPlugin } from "https://deno.land/x/discordeno@13.0.0-rc45/plugins/mod.ts";

Properties

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