Interface YoutubeMixPLaylistPanelVideoRenderData

interface YoutubeMixPLaylistPanelVideoRenderData {
    indexText: { simpleText: string };
    lengthText: {
        accessibility: { a: any; accessibilityData: { label: string } };
        simpleText: string;
    };
    longBylineText: { runs: Record<string, unknown>[] };
    navigationEndpoint: {
        watchEndpoint: { index: number; playlistId: string; videoId: string };
    };
    thumbnail: { thumbnails: { height: number; url: string; width: number }[] };
    title: {
        accessibility: { accessibilityData: { label: string } };
        simpleText: string;
    };
    videoId: any;
}

Properties

indexText: { simpleText: string }
lengthText: {
    accessibility: { a: any; accessibilityData: { label: string } };
    simpleText: string;
}
longBylineText: { runs: Record<string, unknown>[] }
navigationEndpoint: {
    watchEndpoint: { index: number; playlistId: string; videoId: string };
}
thumbnail: { thumbnails: { height: number; url: string; width: number }[] }
title: {
    accessibility: { accessibilityData: { label: string } };
    simpleText: string;
}
videoId: any