UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

16 lines (15 loc) 471 B
import { Overwrite, IStoreChannel, EvolveClient } from "../.."; import { Objex } from "@evolvejs/objex"; import { Channel } from "./Channel"; export declare class StoreChannel extends Channel { overwrites: Objex<string, Overwrite>; guildId?: string; position: number; name: string; nsfw: boolean; rateLimit: number; parentId?: string; data: IStoreChannel; constructor(data: IStoreChannel, client: EvolveClient); private _handle; }