mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
464 B
TypeScript
17 lines
464 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';
|
|
|
|
export {
|
|
Document,
|
|
Page,
|
|
Outline
|
|
};
|