mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-26 16:22:28 -04:00
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
12 lines
223 B
TypeScript
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;
|
|
|
|
}
|