ADD: All Vods on Home Page

ToDo:
Thumbnail in DB
Save user stream to Vod
This commit is contained in:
EvanLin3141
2025-02-28 19:52:01 +00:00
parent 077530b6e6
commit edb959506a
5 changed files with 153 additions and 39 deletions

View File

@@ -0,0 +1,12 @@
export interface VodType {
type: "vod";
id: number;
title: string;
streamer: string;
datetime: string;
category: string;
length: number;
views: number;
url: string;
thumbnail: string;
}