import helpers from "../fetchers/helpers"; import { PlaylistContinuatedList } from "../fetchers/PlaylistContinuatedList"; import { HTTPRequestMethod } from "./HTTPClient"; import { Video, Thumbnail, ContinuatedList, Channel, WrappedHTTPClient, Badge } from "../main"; import { ENDPOINT_BROWSE, ENDPOINT_LIKE, ENDPOINT_REMOVELIKE } from "../constants"; export class Playlist { playlistId?: string; title?: string; description?: string; thumbnails?: Array; videoCount?: number; viewCount?: number; owner?: Channel; videos?:Array