@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!
20 lines (18 loc) • 467 B
text/typescript
import { Schema } from '@pdfme/common';
import { ALIGNMENT } from '../text/types.js';
export interface DateSchema extends Schema {
format: string;
fontName?: string;
alignment: ALIGNMENT;
fontSize: number;
characterSpacing: number;
fontColor: string;
backgroundColor: string;
locale?: string;
// Explicitly include these properties from Schema for TypeScript
width: number;
height: number;
name: string;
type: string;
content?: string;
}