| 1 | import { RouteComponentProps } from "react-router"; |
| 2 | |
| 3 | export interface EmptyPageProps extends RouteComponentProps<any> { |
| 4 | mode: string; |
| 5 | isCollapsed: boolean; |
| 6 | isSelectBook: boolean; |
| 7 | shelfTitle: string; |
| 8 | handleShelf: (shelfTitle: string) => void; |
| 9 | handleMode: (mode: string) => void; |
| 10 | } |
| 11 | export interface EmptyPageState { |
| 12 | isOpenDelete: boolean; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected