Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Respresents an EPUB navigation document. This can be a:

    interface IEpubNavigationDocument {
        getDocument(): Document;
        getType(): "ncx" | "nav";
        getUrl(): URL;
    }

    Methods

    • Get the DOM document instance representing the navigation document.

      Returns Document

    • Get the type of navigation document returned by getDocument().

      Returns "ncx" | "nav"

    • Get the URL to the navigation document.

      Returns URL