1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00
epub.js/types/epub.d.ts
2018-08-20 22:21:26 -07:00

6 lines
186 B
TypeScript

import Book, { BookOptions } from "./book";
export default Epub;
declare function Epub(url: string, options?: BookOptions) : Book;
declare function Epub(options?: BookOptions) : Book;