@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
14 lines (13 loc) • 607 B
TypeScript
import { Objex } from "@evolvejs/objex";
import { ChannelOptions } from "../../Interfaces/Interfaces";
import { Guild } from "../../Structures/Guild/Guild";
import { ChannelTypes } from "../../Utils/Constants";
import { EvolveClient } from "../EvolveClient";
export declare class ChannelsManager extends Objex<string, ChannelTypes> {
private client;
private guild;
constructor(client: EvolveClient, guild?: Guild);
resolve(id: string): Promise<ChannelTypes>;
new(options: ChannelOptions, guild?: Guild): Promise<ChannelTypes>;
delete(id: string, onlyFromCache?: boolean): boolean;
}