summary refs log tree commit diff
path: root/src/util/schemas/responses/WebfingerResponse.ts
blob: a3186a0311af5da01feb27630ced86d9e622228b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
interface WebfingerLink {
	rel: string;
	type: string;
	href: string;
	template?: string;
}

export interface WebfingerResponse {
	subject: string;
	aliases: string[];
	links: WebfingerLink[];
}