@readium/navigator 2.4.0-beta.6 → 2.4.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,11 +36,6 @@ export interface AudioEngine {
36
36
  * The current playback state.
37
37
  */
38
38
  playback: Playback;
39
- /**
40
- * Loads the audio resource at the given URL.
41
- * @param url The URL of the audio resource.
42
- */
43
- loadAudio(url: string): void;
44
39
  /**
45
40
  * Adds an event listener to the audio engine.
46
41
  * @param event The event name to listen.
@@ -48,11 +48,6 @@ export declare class WebAudioEngine implements AudioEngine {
48
48
  * @param callback - callback function to be removed.
49
49
  */
50
50
  off(event: string, callback: EventCallback): void;
51
- /**
52
- * Load the audio resource at the given URL.
53
- * @param url The URL of the audio resource.
54
- * */
55
- loadAudio(url: string): void;
56
51
  private deactivateWebAudio;
57
52
  /**
58
53
  * Sets the media element for playback.
@@ -1,3 +1,4 @@
1
1
  export * from './engine';
2
2
  export * from './preferences';
3
3
  export * from './AudioNavigator';
4
+ export * from './AudioTimeline';
@@ -1,4 +1,5 @@
1
1
  export * from './Navigator';
2
+ export * from './Timeline';
2
3
  export * from './webpub';
3
4
  export * from './epub';
4
5
  export * from './audio';