15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
interface UserSettings {
|
|
notifications: {
|
|
pushNotif: boolean;
|
|
emailNotif: boolean;
|
|
trainNotif: boolean;
|
|
newSongNotif: boolean;
|
|
};
|
|
weeklyReport: boolean;
|
|
leaderBoard: boolean;
|
|
showActivity: boolean;
|
|
recommendations: boolean;
|
|
}
|
|
|
|
export default UserSettings;
|