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!

14 lines (13 loc) 514 B
import React from 'react'; import { UIRenderProps, SchemaForUI, BasePdf, Schema } from '@pdfme/common'; type RendererProps = Omit<UIRenderProps<Schema>, 'schema' | 'rootElement' | 'options' | 'theme' | 'i18n' | '_cache'> & { basePdf: BasePdf; schema: SchemaForUI; value: string; outline: string; onChangeHoveringSchemaId?: (id: string | null) => void; scale: number; selectable?: boolean; }; declare const Renderer: (props: RendererProps) => React.JSX.Element; export default Renderer;