blob: b94baf996d665f4df55750bb57aff070dc2b5d35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export interface WebFingerData {
subject: string
aliases: string[]
links: {
rel: 'self'
type: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
href: string
}[]
}
|