diff --git a/lib/client/types/slightlyDifferentStory.ts b/lib/client/types/slightlyDifferentStory.ts new file mode 100644 index 0000000..c1891d0 --- /dev/null +++ b/lib/client/types/slightlyDifferentStory.ts @@ -0,0 +1,8 @@ +import { type IStory } from "~/models/stories"; +import { IChapter } from "~/models/stories/chapter"; + +export type SingleChapterResult = Omit & { + currentChapter: IChapter & { text: string }; + totalChapters: number; + chapterNames: string[]; +};