import type { Cell, CustomPrintConfig } from '@sinoform/types'; /** * 利用默认打印布局的table信息生成自定义布局的配置对象 * * table分12列,默认使用A4纸 * * @param table 打印布局配置 * @param colLen 显示多少列 */ export default function getConfigByTableLayout(table: Cell[][], colLen: number): CustomPrintConfig;