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