This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/src/util/schemas/responses/InstancePingResponse.ts
2023-04-13 15:40:51 -04:00

14 lines
290 B
TypeScript

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;
};
}