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

    Type Alias YoutubeTrackInfo

    type YoutubeTrackInfo = {
        artist: string;
        artistURL: string;
        channelId: string;
        channelUrl: string;
        createdAt: Date | null;
        description: string;
        duration: number;
        formattedPlatforms: "Youtube";
        id: string;
        identifier: "youtube";
        isLiveContent: boolean;
        likes: number;
        platformType: PlatformType;
        position: number;
        requester: GuildMember;
        thumbnail?: string;
        title: string;
        url: string;
        views: number;
    }
    Index

    Properties

    artist: string
    artistURL: string
    channelId: string
    channelUrl: string
    createdAt: Date | null
    description: string
    duration: number
    formattedPlatforms: "Youtube"
    id: string
    identifier: "youtube"
    isLiveContent: boolean
    likes: number
    platformType: PlatformType
    position: number
    requester: GuildMember
    thumbnail?: string
    title: string
    url: string
    views: number