mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
/// <reference path="epub.d.ts" />
|
|
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();
|