Skip to content

Commit

Permalink
TypeScript - externalManifest is optional for several methods. (Dash-…
Browse files Browse the repository at this point in the history
  • Loading branch information
matvp91 authored Jun 19, 2024
1 parent 9b4aa90 commit 072206b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -714,13 +714,13 @@ declare namespace dashjs {

getSuggestedPresentationDelay(): string;

getAvailabilityStartTime(externalManifest: object): number;
getAvailabilityStartTime(externalManifest?: object): number;

getIsDynamic(externalManifest: object): boolean;
getIsDynamic(externalManifest?: object): boolean;

getDuration(externalManifest: object): number;
getDuration(externalManifest?: object): number;

getRegularPeriods(externalManifest: object): any[];
getRegularPeriods(externalManifest?: object): any[];

getMpd(externalManifest?: object): Mpd;

Expand Down

0 comments on commit 072206b

Please sign in to comment.