Skip to content

Commit

Permalink
fix(PlaylistAddToOption): Use correct type for `contains_selected_vid…
Browse files Browse the repository at this point in the history
…eos`
  • Loading branch information
LuanRT committed Nov 18, 2024
1 parent bdebb9f commit 53d1c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/classes/PlaylistAddToOption.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default class PlaylistAddToOption extends YTNode {
static type = 'PlaylistAddToOption';

public add_to_playlist_service_endpoint: NavigationEndpoint;
public contains_selected_videos: boolean;
public contains_selected_videos: 'ALL' | 'NONE';
public playlist_id: string;
public privacy: string;
public privacy_icon: PrivacyIcon;
Expand Down

0 comments on commit 53d1c75

Please sign in to comment.