mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-06-23 07:11:16 -04:00
25 lines
784 B
TypeScript
25 lines
784 B
TypeScript
import BookModel from "../../model/Book";
|
|
import NoteModel from "../../model/Note";
|
|
import BookmarkModel from "../../model/Bookmark";
|
|
import { RouteComponentProps } from "react-router";
|
|
export interface ImportLocalProps extends RouteComponentProps<any> {
|
|
books: BookModel[];
|
|
deletedBooks: BookModel[];
|
|
dragItem: string;
|
|
notes: NoteModel[];
|
|
isCollapsed: boolean;
|
|
|
|
bookmarks: BookmarkModel[];
|
|
handleMessageBox: (isShow: boolean) => void;
|
|
handleMessage: (message: string) => void;
|
|
handleFetchBooks: () => void;
|
|
handleDrag: (isDrag: boolean) => void;
|
|
handleDownloadDesk: (isDownloadDesk: boolean) => void;
|
|
handleReadingBook: (book: BookModel) => void;
|
|
t: (title: string) => string;
|
|
}
|
|
export interface ImportLocalState {
|
|
isOpenFile: boolean;
|
|
width: number;
|
|
}
|