Type Alias SoundCloudTrackInfo

SoundCloudTrackInfo: {
    artist: string;
    artistAvatar: string;
    artistURL: string;
    createdAt: Date | null;
    description: string;
    duration: number;
    formattedPlatforms: "SoundCloud";
    id: string;
    identifier: "soundcloud";
    likes: number;
    platformType: PlatformType;
    position: number;
    rawData: TrackInfo;
    requester: GuildMember;
    thumbnail: string;
    title: string;
    url: string;
    views: number;
}