UNPKG

vue-reader

Version:

<div align="center"> <img width=250 src="https://raw.githubusercontent.com/jinhuan138/vue-reader/master/public/logo.png" /> <h1>VueReader</h1> </div>

16 lines (15 loc) 694 B
import { NavItem, Location } from 'epubjs'; export interface Item extends NavItem { expansion: boolean; } export interface TocProps { toc: Array<NavItem>; current: Location | null; setLocation: (href: string | number, close?: boolean) => void; isSubmenu?: boolean; } declare const __VLS_export: import('vue').DefineComponent<TocProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TocProps> & Readonly<{}>, { isSubmenu: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;