UNPKG

discord-backup

Version:

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

12 lines (11 loc) 361 B
import { ThreadAutoArchiveDuration, ThreadChannelType } from 'discord.js'; import { MessageData } from './MessageData'; export interface ThreadChannelData { type: ThreadChannelType; name: string; archived: boolean; autoArchiveDuration: ThreadAutoArchiveDuration; locked: boolean; rateLimitPerUser: number; messages: MessageData[]; }