mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 01:09:56 -05:00
19 lines
527 B
TypeScript
19 lines
527 B
TypeScript
/**
|
|
* @deprecated Import directly from the specific reader core modules:
|
|
* - chapterLoader.ts → ensureReaderSession, sortChapters
|
|
* - navigation.ts → getAdjacentChapters, setCurrentReaderPage, goToNextReaderPage, goToPreviousReaderPage
|
|
*
|
|
* This file is kept for backward-compatibility only.
|
|
*/
|
|
export {
|
|
ensureReaderSession,
|
|
} from './chapterLoader';
|
|
|
|
export {
|
|
sortChapters,
|
|
getAdjacentChapters,
|
|
setCurrentReaderPage,
|
|
goToNextReaderPage,
|
|
goToPreviousReaderPage,
|
|
} from './navigation';
|