summary refs log tree commit diff
path: root/src/util/schemas/responses/InstancePingResponse.ts
blob: 5f1a94881c36e69dcbeba8933e01784919e4abc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface InstancePingResponse {
	ping: "pong!";
	instance: {
		id: string;
		name: string;
		description: string | null;
		image: string | null;
		correspondenceEmail: string | null;
		correspondenceUserID: string | null;
		frontPage: string | null;
		tosPage: string | null;
	};
}