UNPKG

epub-chinese-converter

Version:

A small util to convert epub files from Simplified Chinese to Traditional Chinese

6 lines (5 loc) 295 B
import { Book } from "./typings"; import { TocElement } from "./utils/types"; export declare type EPubChapterId = TocElement["id"]; export declare function readEpub(path: string): Promise<Book.BookWithMeta>; export declare function createEpub(options: any, output?: string): Promise<void>;