mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
9 lines
204 B
TypeScript
9 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
|
|
}[]
|
|
}
|