1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00
Peertube/shared/models/activitypub/objects/abuse-object.ts
2022-01-13 14:16:32 +01:00

15 lines
259 B
TypeScript

import { ActivityFlagReasonObject } from './common-objects'
export interface AbuseObject {
type: 'Flag'
content: string
mediaType: 'text/markdown'
object: string | string[]
tag?: ActivityFlagReasonObject[]
startAt?: number
endAt?: number
}