mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
15 lines
224 B
TypeScript
15 lines
224 B
TypeScript
import { Account } from '../actors'
|
|
|
|
export interface VideoAbuse {
|
|
id: number
|
|
reason: string
|
|
reporterAccount: Account
|
|
video: {
|
|
id: number
|
|
name: string
|
|
uuid: string
|
|
url: string
|
|
}
|
|
createdAt: Date
|
|
}
|