drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
11 lines (10 loc) • 532 B
TypeScript
/**
* This file is part of the drip-table project.
* @link : https://drip-table.jd.com/
* @author : Emil Zhai (root@derzh.com)
* @modifier : Emil Zhai (root@derzh.com)
* @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd.
*/
import { DripTableBaseColumnSchema } from "../../types";
export declare const finalizeColumnTitle: (columnSchema: DripTableBaseColumnSchema) => string;
export declare const finalizeColumnWidth: (value: string | number | undefined, defaultValue: number, tableWidth: number) => number;