User.ts 261 B

123456789101112
  1. export type UserPreferences = {
  2. orderOfPlaylists: string[];
  3. nightmode: boolean;
  4. autoSkipDisliked: boolean;
  5. activityLogPublic: boolean;
  6. anonymousSongRequests: boolean;
  7. activityWatch: boolean;
  8. };
  9. export type UserModel = {
  10. preferences: UserPreferences;
  11. };