You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export interface Video {
|
|
id: number;
|
|
broadcast_type: string;
|
|
title: string;
|
|
description: string;
|
|
game: string;
|
|
length: number;
|
|
thumbnail_small: string;
|
|
thumbnail_medium: string;
|
|
thumbnail_large: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
recorded_at: Date;
|
|
published_at: Date;
|
|
}
|