mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-06 12:36:49 +08:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import EPub = require("epub");
|
|
|
|
var epub = new EPub("./file.epub");
|
|
epub.on("end", function(){
|
|
epub.getChapter("chapter_id", function(err: Error, text: string) {});
|
|
});
|
|
|
|
epub.parse();
|