Skip to content

Commit

Permalink
fix(PlayerCaptionTracklist): Fix captions_tracks[].kind type (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored Jan 20, 2024
1 parent 2e710dc commit 7fbc37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/classes/PlayerCaptionsTracklist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default class PlayerCaptionsTracklist extends YTNode {
name: Text;
vss_id: string;
language_code: string;
kind: string;
kind?: 'asr' | 'frc';
is_translatable: boolean;
}[];

Expand Down

0 comments on commit 7fbc37f

Please sign in to comment.