From 56318db438e2cdba7df3b0b354dd0e8125ef79ad Mon Sep 17 00:00:00 2001 From: Paul Berberian Date: Fri, 18 Feb 2022 12:09:46 +0100 Subject: [PATCH] sqdecipher --- src/core/api/public_api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/api/public_api.ts b/src/core/api/public_api.ts index 1132afafdc..fe8ee0337f 100644 --- a/src/core/api/public_api.ts +++ b/src/core/api/public_api.ts @@ -172,11 +172,11 @@ export interface IPeriodAttributes { export interface IDecipherabilityUpdateInfo { periodStart : number; - periodEnd? : number; + periodEnd? : number | undefined; trackType : IBufferType; trackId : string; representationId : string; - isDecipherable? : boolean; + isDecipherable? : boolean | undefined; } export type IStreamEvent = { data: IStreamEventData;