Refactor ScribeChapterComponent and offline handlers for seamless local and server operations

- Add stricter typings (`RefObject`) and improve type safety.
- Introduce conditional logic for `localBook` to
This commit is contained in:
natreex
2025-12-19 10:39:59 -05:00
parent f5e66f8983
commit 43c7ef375c
4 changed files with 81 additions and 42 deletions

View File

@@ -69,6 +69,7 @@ export interface BookProps {
desiredWordCount?: number;
totalWordCount?: number;
coverImage?: string;
localBook?: boolean;
chapters?: ChapterProps[];
}