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