mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-05-25 21:54:35 +00:00
* Add types for react-pdf * [react-pdf] enable strictNullChecks and remove Function types
16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
// Type definitions for react-pdf 4.0
|
|
// Project: https://github.com/wojtekmaj/react-pdf/
|
|
// Definitions by: CodeDaraW <https://github.com/CodeDaraW>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import Document from './dist/Document';
|
|
import Page from './dist/Page';
|
|
import Outline from './dist/Outline';
|
|
|
|
export {
|
|
Document,
|
|
Page,
|
|
Outline
|
|
};
|