1
0
Fork 0
peertube/shared/models/pods/remote-video/remote-video-report-abuse-r...

13 lines
322 B
TypeScript

import { RemoteVideoRequest } from './remote-video-request.model'
export interface RemoteVideoReportAbuseData {
videoUUID: string
reporterUsername: string
reportReason: string
}
export interface RemoteVideoReportAbuseRequest extends RemoteVideoRequest {
type: 'report-abuse'
data: RemoteVideoReportAbuseData
}