mirror of https://github.com/Chocobozzz/PeerTube
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
|
import { ActivityFlagReasonObject } from './common-objects'
|
||
|
|
||
|
export interface AbuseObject {
|
||
|
type: 'Flag'
|
||
|
content: string
|
||
|
object: string | string[]
|
||
|
|
||
|
tag?: ActivityFlagReasonObject[]
|
||
|
|
||
|
startAt?: number
|
||
|
endAt?: number
|
||
|
}
|