UNPKG

dbots

Version:

Discord bot list poster and stats retriever

25 lines (24 loc) 908 B
import { Service, ServicePostOptions } from '../Service'; /** * Represents the Carbonitex service. */ export default class Carbon extends Service { /** The values that can be used to select the service. */ static get aliases(): string[]; /** The logo URL. */ static get logoURL(): string; /** Service's name. */ static get serviceName(): string; /** The website URL. */ static get websiteURL(): string; /** The base URL of the service's API. */ static get baseURL(): string; /** * Posts statistics to this service. * <warn>Shard data posting is not supported for this service.</warn> * @param options The options of the request */ static post(options: ServicePostOptions): Promise<import("axios").AxiosResponse<any, any>>; /** Gets a list of bots on this service. */ getBots(): Promise<import("axios").AxiosResponse<any, any>>; }