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
|
||
|
}[]
|
||
|
}
|