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