
- added `startAt` and `endAt` optional timestamps to help pin down reported sections of a video - added predefined report reasons - added video player with report modal
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { ActivityFlagReasonObject } from './common-objects'
|
|
|
|
export interface VideoAbuseObject {
|
|
type: 'Flag'
|
|
content: string
|
|
object: string | string[]
|
|
tag?: ActivityFlagReasonObject[]
|
|
startAt?: number
|
|
endAt?: number
|
|
}
|