webfinger.ts 204 B

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