23 lines
423 B
TypeScript
23 lines
423 B
TypeScript
export interface Video {
|
|
id: string
|
|
author: string
|
|
createdAt: Date
|
|
categoryLabel: string
|
|
category: number
|
|
licenceLabel: string
|
|
licence: number
|
|
languageLabel: string
|
|
language: number
|
|
description: string
|
|
duration: number
|
|
isLocal: boolean
|
|
magnetUri: string
|
|
name: string
|
|
podHost: string
|
|
tags: string[]
|
|
thumbnailPath: string
|
|
views: number
|
|
likes: number
|
|
dislikes: number
|
|
nsfw: boolean
|
|
}
|