stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
13 lines (12 loc) • 329 B
TypeScript
import { FilterableRequest } from '../FilterableRequest';
export interface GetAnswersOptions extends FilterableRequest {
fromDate?: Date;
max?: Date;
min?: Date;
order?: 'desc' | 'asc';
page?: number;
pageSize?: number;
site: string;
sort?: 'activity' | 'creation' | 'votes';
toDate?: Date;
}