UNPKG

@pdf-viewer/react

Version:

A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.

8 lines (7 loc) 306 B
import { FC, PropsWithChildren } from 'react'; import { License } from '../utils/types'; export declare const LicenseContext: import('react').Context<License>; export declare const useLicenseContext: () => License; export declare const LicenseProvider: FC<PropsWithChildren<{ licenseKey?: string; }>>;