9 lines
176 B
TypeScript
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;
|
|
}
|