UNPKG

rotowire-api-client

Version:

Node and NestJS wrappers for Rotowire feeds

11 lines (10 loc) 586 B
import { Observable } from 'rxjs'; import { Configuration } from '../configuration'; export interface DefaultRotowireNbaApiServiceInterface { defaultHeaders: {}; configuration: Configuration; dailyProjections(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>; expectedLineups(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>; injuries(format: string, extraHttpRequestParams?: any): Observable<{}>; newsInjuries(format: string, date?: string, hours?: number, extraHttpRequestParams?: any): Observable<{}>; }