Skip to content

Commit

Permalink
Update guided navigation imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JayPanoz committed Sep 12, 2024
1 parent b68c0e5 commit 4150df1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions navigator/src/audio/engine/AudioEngine.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Locator } from '@readium/shared/src/publication/Locator';
import { Publication } from '@readium/shared/src/publication/Publication';
import { Locator } from '@readium/shared';
import { Publication } from '@readium/shared';

/**
* Initial state of the audio engine playback.
Expand Down
8 changes: 4 additions & 4 deletions navigator/src/audio/engine/WebAudioEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
Playback,
} from "./AudioEngine";

import { Publication } from "@readium/shared/src/publication/Publication";
import { Locator } from "@readium/shared/src/publication/Locator";
import { Publication } from "@readium/shared";
import { Locator } from "@readium/shared";

type EventCallback = (data: any) => void;

Expand Down Expand Up @@ -139,8 +139,8 @@ import {
* Plays the audio resource at the given locator.
*/
public async playLocator(
publication: Publication,
locator: Locator
_publication: Publication,
_locator: Locator
): Promise<void> {
// Implementation details.
}
Expand Down

0 comments on commit 4150df1

Please sign in to comment.