discordio-backup
Version:
A complete framework to facilitate guild backup!
9 lines (8 loc) • 346 B
TypeScript
import { TextBasedChannelTypes, VoiceBasedChannelTypes, ThreadChannelType } from 'discord.js';
import { ChannelPermissionsData } from './';
export interface BaseChannelData {
type: TextBasedChannelTypes | VoiceBasedChannelTypes | ThreadChannelType | number;
name: string;
parent?: string;
permissions: ChannelPermissionsData[];
}