Interface PlaylistInfo

interface PlaylistInfo {
    description: string;
    id: string;
    thumbnails: {
        height: number;
        url: string;
        width: number;
    }[];
    title: string;
    url: string;
    videos: PlaylistVideo[];
}

Properties

description: string
id: string
thumbnails: {
    height: number;
    url: string;
    width: number;
}[]

Type declaration

  • height: number
  • url: string
  • width: number
title: string
url: string
videos: PlaylistVideo[]