Skip to content

Commit

Permalink
chore: export storage managers from player
Browse files Browse the repository at this point in the history
Expose managers and trigger type generation

Required for FEC-13504
  • Loading branch information
SivanA-Kaltura authored Feb 6, 2024
1 parent 2952d98 commit 8a56dee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import { playlist } from './common/playlist';
import { KALTURA_PLAYER_START_TIME_QS } from './common/utils/setup-helpers';
import { Ad, AdBreak } from './common/ads';
import { BasePlugin, registerPlugin } from './common/plugins';
import SessionStorageManager from './common/storage/session-storage-manager';
import LocalStorageManager from './common/storage/local-storage-manager';

core['Ad'] = Ad;
core['AdBreak'] = AdBreak;
Expand Down Expand Up @@ -43,5 +45,7 @@ export {
PLAYER_TYPE,
VERSION,
PLAYER_NAME,
KALTURA_PLAYER_START_TIME_QS
KALTURA_PLAYER_START_TIME_QS,
LocalStorageManager,
SessionStorageManager
};

0 comments on commit 8a56dee

Please sign in to comment.