Type Alias SpotifyTrackInfo

SpotifyTrackInfo: {
    artist: string;
    createdAt: Date | null;
    description: string;
    duration: number;
    formattedPlatforms: "Spotify";
    id: string;
    identifier: "spotify";
    likes: number;
    platformType: PlatformType;
    position: number;
    requester: GuildMember;
    thumbnail: string;
    title: string;
    url: string;
    views: number;
}

Type declaration

  • artist: string
  • createdAt: Date | null
  • description: string
  • duration: number
  • formattedPlatforms: "Spotify"
  • id: string
  • identifier: "spotify"
  • likes: number
  • platformType: PlatformType
  • position: number
  • requester: GuildMember
  • thumbnail: string
  • title: string
  • url: string
  • views: number