type.ts
1 export interface Video { 2 id: string; 3 age: number; 4 userId: string | null; 5 authorName: string; 6 category: string; 7 views: number; 8 duration: number; 9 likes: number; 10 resolution: string; 11 title: string; 12 fileSizeMb: number; 13 fileKey: string; 14 previewImageKey: string; 15 status: string; 16 tags: Array<string>; 17 createdAt: string; 18 updatedAt: string; 19 }