From 978882245a2ca2adfa867f27c298aa818f978e58 Mon Sep 17 00:00:00 2001 From: Isamu Arimoto Date: Sat, 11 Jul 2020 15:50:50 +0900 Subject: [PATCH] fix: startRecord type missing --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 46ee0424f3..1a4d35d95d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -56,7 +56,7 @@ declare namespace dashjs { loadRecordsFromStorage(): Promise; getAllRecords(): OfflineRecord[]; createRecord(manifestURL: string): Promise; - startRecord(id: string, mediaInfos: MediaInfo[]); + startRecord(id: string, mediaInfos: MediaInfo[]): void; stopRecord(id: string): void; resumeRecord(id: string): void; deleteRecord(id: string): void;