Skip to content

Commit

Permalink
export storage managers
Browse files Browse the repository at this point in the history
  • Loading branch information
SivanA-Kaltura committed Jan 31, 2024
1 parent ff0c0b3 commit c3b78f4
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 c3b78f4

Please sign in to comment.