Skip to content

Commit

Permalink
Merge pull request #3328 from isamu/fixStartRecordTypeError
Browse files Browse the repository at this point in the history
fix: startRecord type missing
  • Loading branch information
Bertrand Berthelot committed Jul 13, 2020
2 parents 97feaaa + 9788822 commit 2592c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -56,7 +56,7 @@ declare namespace dashjs {
loadRecordsFromStorage(): Promise<void>;
getAllRecords(): OfflineRecord[];
createRecord(manifestURL: string): Promise<string>;
startRecord(id: string, mediaInfos: MediaInfo[]);
startRecord(id: string, mediaInfos: MediaInfo[]): void;
stopRecord(id: string): void;
resumeRecord(id: string): void;
deleteRecord(id: string): void;
Expand Down

0 comments on commit 2592c96

Please sign in to comment.