UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

13 lines (12 loc) 418 B
import { Overwrite, EvolveClient, ICategoryChannel } from "../.."; import { Objex } from "@evolvejs/objex"; import { Channel } from "./Channel"; export declare class CategoryChannel extends Channel { overwrites: Objex<string, Overwrite>; position: number; name: string; data: ICategoryChannel; guildId?: string; constructor(data: ICategoryChannel, client: EvolveClient); private _handle; }