mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* pdfjs-dist module definition * Declare pdfjs export in react-pdf * Remove react-pdf/package.json, fix-up default export * Add pdfjs test to react-pdf
14 lines
498 B
TypeScript
14 lines
498 B
TypeScript
// Type definitions for react-pdf 4.0
|
|
// Project: https://github.com/wojtekmaj/react-pdf/
|
|
// Definitions by: CodeDaraW <https://github.com/CodeDaraW>
|
|
// Nathan Hardy <https://github.com/nhardy>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
import Document from './dist/Document';
|
|
import Page from './dist/Page';
|
|
import Outline from './dist/Outline';
|
|
import pdfjs from './dist/pdfjs-dist';
|
|
|
|
export { pdfjs, Document, Page, Outline };
|