detritus-client
Version:
A Typescript NodeJS library to interact with Discord's API, both Rest and Gateway.
16 lines (15 loc) • 460 B
TypeScript
import { BaseClientCollection, BaseClientCollectionOptions } from './basecollection';
import { Channel } from '../structures/channel';
/**
* @category Collection Options
*/
export interface ChannelsOptions extends BaseClientCollectionOptions {
}
/**
* Channels Collection
* @category Collections
*/
export declare class Channels extends BaseClientCollection<string, Channel> {
insert(channel: Channel): void;
get [Symbol.toStringTag](): string;
}