]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-abuse.model.ts
Remove any typing from server
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
1 export interface VideoAbuse {
2 id: number
3 reporterPodHost: string
4 reason: string
5 reporterUsername: string
6 videoId: string
7 createdAt: Date
8 }