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!

7 lines (6 loc) 185 B
import type { Schema, Plugin } from '@pdfme/common'; interface LineSchema extends Schema { color: string; } declare const lineSchema: Plugin<LineSchema>; export default lineSchema;