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 {
deviceId: number,
micVolume: number,
colorScheme: 'light' | 'dark' | 'system',
lang: 'fr' | 'en' | 'sp',
difficulty: 'beg' | 'inter' | 'pro',
colorBlind: boolean,
micVolume: number,
colorScheme: 'light' | 'dark' | 'system',
lang: 'fr' | 'en' | 'sp',
difficulty: 'beg' | 'inter' | 'pro',
colorBlind: boolean,
customAds: boolean,
dataCollection: boolean
}

View File

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