PeerTube/shared/models/activitypub/objects/common-objects.ts

32 lines
621 B
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
export interface ActivityIdentifierObject {
identifier: string
name: string
}
export interface ActivityTagObject {
2018-01-05 11:19:25 +01:00
type: 'Hashtag' | 'Mention'
href?: string
2017-11-09 17:51:58 +01: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'
url: string
width: number
size?: number
}
2017-12-14 17:38:41 +01:00
export interface ActivityPubAttributedTo {
type: 'Group' | 'Person'
id: string
}