Skip to content

Commit

Permalink
fix(FEC-12844): Related - autoContinue: true - countdown not canceled
Browse files Browse the repository at this point in the history
Expose withEventManager decorator in ts-types for use by playkit-js-related
  • Loading branch information
SivanA-Kaltura authored Jan 11, 2023
1 parent bad2901 commit 8e8cd07
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ts-typed/kaltura-player.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ declare module 'global' {
ProviderParser: any;
};
ui: {
Event: {
withEventManager: any;
};
EventType: Record<string, string>;
redux: {
connect: (...args: any) => any;
useSelector: (...args: any) => any;
};
reducers: Record<string, {actions: Record<string, Function>, types: Record<string, string>}>;
reducers: Record<string, {actions: Record<string, Function>; types: Record<string, string>}>;
createPortal: (children: any, domElement: HTMLElement) => preact.VNode<any>;
utils: {
getLogger: (name: string) => KalturaPlayerTypes.Logger;
Expand Down Expand Up @@ -45,7 +48,7 @@ declare module 'global' {
FakeEvent: any;
FakeEventTarget: {
new (...args: any[]): KalturaPlayerTypes.FakeEventTarget;
}
};
Error: any;
StateType: Record<string, string>;
MediaType: Record<string, string>;
Expand Down

0 comments on commit 8e8cd07

Please sign in to comment.