stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
24 lines (23 loc) • 822 B
TypeScript
import { Site } from './Site';
import { TypeInfo } from '../interfaces/result-types/TypeInfo';
/**
* The equivalent of [Type info](https://api.stackexchange.com/docs/types/info).<br>
* This object describes a [[Site]] in the [Stack Exchange network](https://stackexchange.com/sites).
*/
export declare class Info {
answersPerMinute: number | null;
apiRevision: string | null;
badgesPerMinute: number | null;
newActiveUsers: number | null;
questionsPerMinute: number | null;
site: Site | null;
totalAccepted: number | null;
totalAnswers: number | null;
totalBadges: number | null;
totalComments: number | null;
totalQuestions: number | null;
totalUnanswered: number | null;
totalUsers: number | null;
totalVotes: number | null;
constructor(info?: TypeInfo);
}