UNPKG

discord-backup

Version:

A complete framework to facilitate server backup using discord.js v14 with rate limiting and error handling

28 lines (27 loc) 1.47 kB
import type { CategoryData, ChannelPermissionsData, CreateOptions, LoadOptions, MessageData, TextChannelData, VoiceChannelData } from './types'; import { CategoryChannel, Guild, TextChannel, VoiceChannel, NewsChannel, ThreadChannel } from 'discord.js'; /** * Gets the permissions for a channel */ export declare function fetchChannelPermissions(channel: TextChannel | VoiceChannel | CategoryChannel | NewsChannel): ChannelPermissionsData[]; /** * Fetches the voice channel data that is necessary for the backup */ export declare function fetchVoiceChannelData(channel: VoiceChannel): Promise<VoiceChannelData>; export declare function fetchChannelMessages(channel: TextChannel | NewsChannel | ThreadChannel, options: CreateOptions): Promise<MessageData[]>; /** * Fetches the text channel data that is necessary for the backup */ export declare function fetchTextChannelData(channel: TextChannel | NewsChannel, options: CreateOptions): Promise<TextChannelData>; /** * Creates a category for the guild */ export declare function loadCategory(categoryData: CategoryData, guild: Guild): Promise<CategoryChannel>; /** * Create a channel and returns it */ export declare function loadChannel(channelData: TextChannelData | VoiceChannelData, guild: Guild, category?: CategoryChannel, options?: LoadOptions): Promise<unknown>; /** * Delete all roles, all channels, all emojis, etc... of a guild */ export declare function clearGuild(guild: Guild): Promise<void>;