react-pdf-builder
Version:
Build beautiful PDF documents in React.
12 lines (11 loc) • 423 B
TypeScript
import React from 'react';
import { ThemedPageProps } from '../../components/basics/ThemedPage';
export interface DocsPDFProps {
children?: any;
pageSize?: string;
orientation?: 'portrait' | 'landscape';
pageProps?: ThemedPageProps;
width?: number;
height?: number;
}
export declare const DocsPDF: ({ children, pageSize, orientation, pageProps, width, height, }: DocsPDFProps) => React.JSX.Element;