diff options
Diffstat (limited to 'api/api.ts')
-rw-r--r-- | api/api.ts | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -16,10 +16,17 @@ export type ruleset = { shared: boolean; }, ranked: boolean; -}; +} + +export type userColors = { + diskA: string; + diskB: string; + background: string; +} export interface userPreferences { darkMode?: boolean; ruleset?: ruleset; + userColors?: userColors; } |