@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!
11 lines (10 loc) • 356 B
TypeScript
import { Schema, BasePdf, CommonOptions } from '@pdfme/common';
import { Table } from './classes.js';
interface CreateTableArgs {
schema: Schema;
basePdf: BasePdf;
options: CommonOptions;
_cache: Map<string | number, unknown>;
}
export declare function createSingleTable(body: string[][], args: CreateTableArgs): Promise<Table>;
export {};