UNPKG

pdx-backup

Version:

A complete framework to facilitate server backup using discord.js v14 by Foob, forked from discord-backup djs v13 (by androz2091)

9 lines (8 loc) 345 B
import { TextBasedChannelTypes, VoiceBasedChannelTypes, ThreadChannelType } from 'discord.js'; import { ChannelPermissionsData } from './'; export interface BaseChannelData { type: TextBasedChannelTypes | VoiceBasedChannelTypes | ThreadChannelType; name: string; parent?: string; permissions: ChannelPermissionsData[]; }