disgrow
Version:
A growth increments for your Discord bots
17 lines (16 loc) • 426 B
TypeScript
declare class Disgrow {
private base;
private bot;
static default: typeof Disgrow;
constructor(bot: string);
/**
* Get the summary stats increments of a bots
* @example
* ```js
* Disgrow.myStats().then((res) => { console.log("myStats", res); });
* ```
* https://disgrow.fly.dev/stats/get?id=724047481561809007
*/
myStats(): Promise<any>;
}
export = Disgrow;