UNPKG

@pdfme/schemas

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) 257 B
import { Plugin } from '@pdfme/common'; import { DateSchema } from './types.js'; type PickerType = 'date' | 'time' | 'dateTime'; export declare const getPlugin: ({ type, icon }: { type: PickerType; icon: string; }) => Plugin<DateSchema>; export {};