1
0
Fork 0
peertube/shared/models/activitypub/webfinger.ts

10 lines
204 B
TypeScript

export interface WebFingerData {
subject: string
aliases: string[]
links: {
rel: 'self'
type: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
href: string
}[]
}