stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
10 lines (9 loc) • 358 B
TypeScript
import { FilterableRequest } from '../FilterableRequest';
import { Field } from '../../../types/Field';
import { FieldsOfType } from '../../../types/FieldsOfType';
export interface CreateFilterOptions extends FilterableRequest {
base?: string;
exclude?: Array<Field | FieldsOfType>;
include?: Array<Field | FieldsOfType>;
unsafe?: boolean;
}