Front: Indet fix

This commit is contained in:
Arthur Jamet
2023-04-24 16:48:45 +01:00
parent 4b44ef0c11
commit 7716c5f9c6
2 changed files with 14 additions and 14 deletions

View File

@@ -1,10 +1,10 @@
interface LocalSettings { interface LocalSettings {
deviceId: number, deviceId: number,
micVolume: number, micVolume: number,
colorScheme: 'light' | 'dark' | 'system', colorScheme: 'light' | 'dark' | 'system',
lang: 'fr' | 'en' | 'sp', lang: 'fr' | 'en' | 'sp',
difficulty: 'beg' | 'inter' | 'pro', difficulty: 'beg' | 'inter' | 'pro',
colorBlind: boolean, colorBlind: boolean,
customAds: boolean, customAds: boolean,
dataCollection: boolean dataCollection: boolean
} }

View File

@@ -1,13 +1,13 @@
interface UserSettings { interface UserSettings {
notifications: { notifications: {
pushNotif: boolean, pushNotif: boolean,
emailNotif: boolean, emailNotif: boolean,
trainNotif: boolean, trainNotif: boolean,
newSongNotif: boolean newSongNotif: boolean
}, },
weeklyReport: boolean, weeklyReport: boolean,
leaderBoard: boolean, leaderBoard: boolean,
showActivity: boolean, showActivity: boolean,
recommendations: boolean recommendations: boolean
} }