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

34 lines
639 B
TypeScript
Raw Normal View History

2017-11-09 10:51:58 -06:00
export interface ActivityIdentifierObject {
identifier: string
name: string
}
export interface ActivityTagObject {
2018-01-05 04:19:25 -06:00
type: 'Hashtag' | 'Mention'
href?: string
2017-11-09 10:51:58 -06: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 08:35:30 -06:00
href: string
height: number
2018-08-03 10:00:19 -05:00
2017-11-09 10:51:58 -06:00
size?: number
2018-08-03 10:00:19 -05:00
fps?: number
2017-11-09 10:51:58 -06:00
}
2017-12-14 10:38:41 -06:00
export interface ActivityPubAttributedTo {
type: 'Group' | 'Person'
id: string
}