From f908620c46c65bfef7a56471bf03695057500c20 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Mon, 17 Jul 2023 00:56:49 +0300 Subject: [PATCH] typings --- @types/Server.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/@types/Server.ts b/@types/Server.ts index 33295ca..35f4a92 100644 --- a/@types/Server.ts +++ b/@types/Server.ts @@ -181,4 +181,13 @@ export type RegistrationInvite = { code: string, validFor: number, created: number +} + +// Types for these don't matter for the server as they're only used by the client +export type GlobalClientSettings = object +export type UserClientSettings = object + +export type ClientSettings = { + global: GlobalClientSettings, + user?: UserClientSettings } \ No newline at end of file