UNPKG

detritus-client

Version:

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

19 lines (18 loc) 781 B
import { Endpoints } from 'detritus-client-rest'; import * as Collections from './collections'; import * as Command from './command'; import * as CommandRatelimit from './commandratelimit'; import * as Constants from './constants'; import * as Interaction from './interaction'; import * as Structures from './structures'; import * as Utils from './utils'; export { Collections, Command, CommandRatelimit, Constants, Endpoints, Interaction, Structures, Utils, }; export * from './client'; export * from './commandclient'; export * from './clusterclient'; export * from './clustermanager'; export * from './gateway/clientevents'; export * from './gateway/rawevents'; export * from './media/mediaevents'; export * from './media/rawevents'; export * from './interactioncommandclient';