@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!
9 lines (8 loc) • 435 B
TypeScript
import { Schema, BasePdf, CommonOptions, DynamicLayoutArgs, DynamicLayoutResult } from '@pdfme/common';
export declare const getDynamicHeightsForTable: (value: string, args: {
schema: Schema;
basePdf: BasePdf;
options: CommonOptions;
_cache: Map<string | number, unknown>;
}) => Promise<number[]>;
export declare const getDynamicLayoutForTable: (value: string, args: DynamicLayoutArgs) => Promise<DynamicLayoutResult>;