Begin activitypub
This commit is contained in:
parent
343ad675f2
commit
e4f97babf7
92 changed files with 2507 additions and 920 deletions
25
shared/models/activitypub/objects/common-objects.ts
Normal file
25
shared/models/activitypub/objects/common-objects.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
export interface ActivityIdentifierObject {
|
||||
identifier: string
|
||||
name: string
|
||||
}
|
||||
|
||||
export interface ActivityTagObject {
|
||||
type: 'Hashtag'
|
||||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue