Kavita/UI/Web/src/app/_models/readers/personal-toc.ts
Joe Milazzo b141613d60
Epub Annotation System (#4008)
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com>
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
2025-08-30 12:01:00 -07:00

12 lines
223 B
TypeScript

export interface PersonalToC {
chapterId: number;
pageNumber: number;
title: string;
bookScrollId: string | undefined;
selectedText: string | null;
chapterTitle: string | null;
/* Ui Only */
position: 0;
}