1
0
Fork 0
peertube/shared/models/activitypub/objects/common-objects.ts

32 lines
622 B
TypeScript
Raw Normal View History

2017-11-09 16:51:58 +00:00
export interface ActivityIdentifierObject {
identifier: string
name: string
}
export interface ActivityTagObject {
2018-01-05 10:19:25 +00:00
type: 'Hashtag' | 'Mention'
href?: string
2017-11-09 16:51:58 +00:00
name: string
}
export interface ActivityIconObject {
type: 'Image'
url: string
mediaType: 'image/jpeg'
width: number
height: number
}
export interface ActivityUrlObject {
type: 'Link'
mimeType: 'video/mp4' | 'video/webm' | 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet'
2018-01-12 14:35:30 +00:00
href: string
2017-11-09 16:51:58 +00:00
width: number
size?: number
}
2017-12-14 16:38:41 +00:00
export interface ActivityPubAttributedTo {
type: 'Group' | 'Person'
id: string
}