@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!
24 lines (23 loc) • 1.3 kB
TypeScript
import { ALIGNMENT, VERTICAL_ALIGNMENT, DYNAMIC_FONT_SIZE_FIT } from './types.js';
export declare const DEFAULT_FONT_SIZE = 13;
export declare const ALIGN_LEFT: ALIGNMENT;
export declare const ALIGN_CENTER: ALIGNMENT;
export declare const ALIGN_RIGHT: ALIGNMENT;
export declare const ALIGN_JUSTIFY: ALIGNMENT;
export declare const DEFAULT_ALIGNMENT: ALIGNMENT;
export declare const VERTICAL_ALIGN_TOP: VERTICAL_ALIGNMENT;
export declare const VERTICAL_ALIGN_MIDDLE: VERTICAL_ALIGNMENT;
export declare const VERTICAL_ALIGN_BOTTOM: VERTICAL_ALIGNMENT;
export declare const DEFAULT_VERTICAL_ALIGNMENT: VERTICAL_ALIGNMENT;
export declare const DEFAULT_LINE_HEIGHT = 1;
export declare const DEFAULT_CHARACTER_SPACING = 0;
export declare const DEFAULT_FONT_COLOR = "#000000";
export declare const PLACEHOLDER_FONT_COLOR = "#A0A0A0";
export declare const DYNAMIC_FIT_VERTICAL: DYNAMIC_FONT_SIZE_FIT;
export declare const DYNAMIC_FIT_HORIZONTAL: DYNAMIC_FONT_SIZE_FIT;
export declare const DEFAULT_DYNAMIC_FIT: DYNAMIC_FONT_SIZE_FIT;
export declare const DEFAULT_DYNAMIC_MIN_FONT_SIZE = 4;
export declare const DEFAULT_DYNAMIC_MAX_FONT_SIZE = 72;
export declare const FONT_SIZE_ADJUSTMENT = 0.25;
export declare const LINE_START_FORBIDDEN_CHARS: string[];
export declare const LINE_END_FORBIDDEN_CHARS: string[];