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!

9 lines (8 loc) 455 B
import React from 'react'; import type { SchemaForUI } from '@pdfme/common'; import type { SidebarProps } from '../../../../types.js'; type DetailViewProps = Pick<SidebarProps, 'size' | 'schemas' | 'schemasList' | 'pageSize' | 'basePdf' | 'changeSchemas' | 'activeElements' | 'deselectSchema'> & { activeSchema: SchemaForUI; }; declare const _default: React.MemoExoticComponent<(props: DetailViewProps) => React.JSX.Element>; export default _default;