User.ts 367 B

1234567891011121314
  1. export type UserPreferences = {
  2. orderOfPlaylists: string[];
  3. nightmode: boolean;
  4. autoSkipDisliked: boolean;
  5. activityLogPublic: boolean;
  6. anonymousSongRequests: boolean;
  7. activityWatch: boolean;
  8. defaultStationPrivacy: "public" | "unlisted" | "private";
  9. defaultPlaylistPrivacy: "public" | "private";
  10. };
  11. export type UserModel = {
  12. preferences: UserPreferences;
  13. };