mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import ePub, { Book } from '../';
|
|
|
|
function testEpub() {
|
|
const epub = ePub("https://s3.amazonaws.com/moby-dick/moby-dick.epub");
|
|
|
|
const book = new Book("https://s3.amazonaws.com/moby-dick/moby-dick.epub", {});
|
|
}
|
|
|
|
testEpub();
|