discord-rebackup
Version:
An rewamped fork of the discord-backup module ! by the iHorizon Team
9 lines (8 loc) • 364 B
TypeScript
import { TextBasedChannelTypes, VoiceBasedChannelTypes, ThreadChannelType, ChannelType } from 'discord.js';
import { ChannelPermissionsData } from './';
export interface BaseChannelData {
type: TextBasedChannelTypes | VoiceBasedChannelTypes | ThreadChannelType | ChannelType;
name: string;
parent?: string;
permissions: ChannelPermissionsData[];
}