This commit is contained in:
Erik 2023-07-17 00:56:49 +03:00
parent 8a9916893a
commit f908620c46
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68

View File

@ -181,4 +181,13 @@ export type RegistrationInvite = {
code: string, code: string,
validFor: number, validFor: number,
created: 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
} }