Skip to main content
Module

x/youtubei/deno.ts>Types.IEditPlaylistRequest

A wrapper around YouTube's internal API — reverse engineering InnerTube
Very Popular
Go to Latest
interface Types.IEditPlaylistRequest
import { type Types } from "https://deno.land/x/youtubei@v9.3.0-deno/deno.ts";
const { IEditPlaylistRequest } = Types;

Properties

actions: { action:
| "ACTION_ADD_VIDEO"
| "ACTION_REMOVE_VIDEO"
| "ACTION_MOVE_VIDEO_AFTER"
| "ACTION_SET_PLAYLIST_DESCRIPTION"
| "ACTION_SET_PLAYLIST_NAME"
; addedVideoId?: string; setVideoId?: string; movedSetVideoIdPredecessor?: string; playlistDescription?: string; playlistName?: string; }[]