15 lines
259 B
TypeScript
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
|
|
}
|