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!

12 lines (11 loc) 380 B
import React from 'react'; import type { Font, Lang, UIOptions, PluginRegistry } from '@pdfme/common'; type Props = { children: React.ReactNode; lang: Lang; font: Font; plugins: PluginRegistry; options: UIOptions; }; declare const AppContextProvider: ({ children, lang, font, plugins, options }: Props) => React.JSX.Element; export default AppContextProvider;