Skip to content

Commit

Permalink
feat(apidocs): improve SideLoadedSubtitleTrack API
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandkakonyi committed Oct 10, 2023
1 parent 899d1d5 commit 1411673
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/subtitleTrack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export interface SideLoadedSubtitleTrack {
* The label for this track.
*/
label: string;
/**
* The IETF BCP 47 language tag associated with this track, e.g. `pt`, `en`, `es` etc.
*/
language: string;
/**
* The unique identifier for this track. If no value is provided, a random UUIDv4 will be generated for it.
*/
Expand All @@ -78,8 +82,4 @@ export interface SideLoadedSubtitleTrack {
* Default is `false`.
*/
isForced?: boolean;
/**
* The IETF BCP 47 language tag associated with this track, e.g. `pt`, `en`, `es` etc.
*/
language: string;
}

0 comments on commit 1411673

Please sign in to comment.