1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-05 15:32:55 +02:00

Fix parent type of NavItem (NavItem -> string)

This commit is contained in:
m8524769 2019-12-19 00:15:41 +08:00
parent a6bbf71363
commit 139e9efb22

View file

@ -3,7 +3,7 @@ export interface NavItem {
href: string,
label: string,
subitems?: Array<NavItem>,
parent?: NavItem
parent?: string
}
export interface LandmarkItem {