@aoijs/aoi.music
    Preparing search index...

    Type Alias SpotifyTrackInfo

    type 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;
    }
    Index

    Properties

    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