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) 224 B
import { Plugin, Schema } from '@pdfme/common'; export interface CircleMarkSchema extends Schema { color: string; borderWidth: number; } declare const circleMark: Plugin<CircleMarkSchema>; export default circleMark;