UNPKG

detritus-client

Version:

A Typescript NodeJS library to interact with Discord's API, both Rest and Gateway.

18 lines (17 loc) 578 B
import { GatewayRawEvents } from '../gateway/rawevents'; import { Presence } from '../structures'; import { BaseClientCollection, BaseClientCollectionOptions } from './basecollection'; /** * @category Collection Options */ export interface PresencesOptions extends BaseClientCollectionOptions { } /** * Presences Collection * @category Collections */ export declare class Presences extends BaseClientCollection<string, Presence> { insert(value: GatewayRawEvents.RawPresence): Presence; clearGuildId(guildId: string): void; get [Symbol.toStringTag](): string; }