2020-03-06 23:08:38 +01:00

9 lines
176 B
TypeScript

/* tslint:disable */
import { OddH2H } from './odd-h2h';
export interface OddNice {
teams?: Array<string>;
commence_time?: number;
home_team?: string;
odds?: OddH2H;
}