Files
DefinitelyTyped/epub/epub-tests.ts
Julien Chaumond 04a5bdef67 Typings for epub
2016-08-10 16:20:48 +02:00

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();