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!

8 lines (7 loc) 211 B
import { Plugin } from '@pdfme/common'; import { TextSchema } from '../text/types.js'; interface Select extends TextSchema { options: string[]; } declare const schema: Plugin<Select>; export default schema;