]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/activitypub/objects/abuse-object.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / abuse-object.ts
... / ...
CommitLineData
1import { ActivityFlagReasonObject } from './common-objects'
2
3export interface AbuseObject {
4 type: 'Flag'
5
6 content: string
7 mediaType: 'text/markdown'
8
9 object: string | string[]
10
11 tag?: ActivityFlagReasonObject[]
12
13 startAt?: number
14 endAt?: number
15}