react-pdf-printer
Version:
Create pdf document using React
12 lines (11 loc) • 465 B
TypeScript
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;