DefinitelyTyped/types/react-pdf/index.d.ts
A S 22bfbf1ce8 pdfjs-dist expand exports, export pdfjs-dist from react-pdf (#38117)
* 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
2019-09-09 06:42:36 -07:00

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 };