Newer
Older
percord / src / util / schemas / responses / InstancePingResponse.ts
@Puyodead1 Puyodead1 on 13 Apr 2023 290 bytes oapi: root level routes
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;
	};
}