UNPKG

react-pdf-printer

Version:
12 lines (11 loc) 465 B
import React from 'react'; import { DocumentConfiguration } from 'model'; import { DeepPartial } from 'utilities/helperTypes'; export declare type DocumentProviderProps = { configuration?: DeepPartial<DocumentConfiguration>; header: React.ReactNode; footer: React.ReactNode; children: React.ReactNode; }; declare const DocumentProvider: ({ configuration, children, ...props }: DocumentProviderProps) => JSX.Element; export default DocumentProvider;