UNPKG

rotowire-api-client

Version:

Node and NestJS wrappers for Rotowire feeds

11 lines (10 loc) 639 B
import { Observable } from 'rxjs'; import { Configuration } from '../configuration'; export interface DefaultRotowireNflApiServiceInterface { defaultHeaders: {}; configuration: Configuration; dailyProjections(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>; injuries(format: string, extraHttpRequestParams?: any): Observable<{}>; newsInjuries(format: string, date?: string, hours?: number, extraHttpRequestParams?: any): Observable<{}>; weeklyProjections(format: string, position?: string, season?: number, team?: string, week?: number, extraHttpRequestParams?: any): Observable<{}>; }