Skip to content

Commit

Permalink
Make test entry export the same things main entry exports
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Jun 30, 2023
1 parent 5dcb733 commit a5d34cc
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
import * as pdfjs from 'pdfjs-dist';

import Document from './Document';
import Outline from './Outline';
import Page from './Page';
import Thumbnail from './Thumbnail';

import useDocumentContext from './shared/hooks/useDocumentContext';
import useOutlineContext from './shared/hooks/useOutlineContext';
import usePageContext from './shared/hooks/usePageContext';

export type { DocumentProps } from './Document';
export type { OutlineProps } from './Outline';
export type { PageProps } from './Page';
export type { ThumbnailProps } from './Thumbnail';

import './pdf.worker.entry';

export { pdfjs, Document, Outline, Page };
export {
pdfjs,
Document,
Outline,
Page,
Thumbnail,
useDocumentContext,
useOutlineContext,
usePageContext,
};

0 comments on commit a5d34cc

Please sign in to comment.