stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
12 lines (11 loc) • 438 B
TypeScript
import { TypeBadgeCount } from '../interfaces/result-types/TypeBadgeCount';
/**
* The equivalent of [Type badge_count](https://api.stackexchange.com/docs/types/badge-count).<br>
* This object represents the total [[Badge|Badges]], segregated by rank, a user has earned.
*/
export declare class BadgeCount {
bronze: number | null;
gold: number | null;
silver: number | null;
constructor(badge_count?: TypeBadgeCount);
}