UNPKG

@pdfme/ui

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

11 lines (10 loc) 295 B
import React from 'react'; import { Template } from '@pdfme/common'; declare const StaticSchema: (props: { template: Template; input: Record<string, string>; scale: number; totalPages: number; currentPage: number; }) => React.JSX.Element | null; export default StaticSchema;