@acrool/react-table
Version:
Table library based for Reactjs
23 lines (22 loc) • 587 B
TypeScript
import { TTableTitle } from '../types';
/**
* 取得處理合併設定
* @param title
*/
export declare const getHeaderColSpanConfig: <K extends string>(title: TTableTitle<K>) => Record<string, any>;
/**
* 取得沾黏的設定 (Left)
* @param title
* @param data
*/
export declare const getHeaderStickyLeftConfig: <K extends string>(title: TTableTitle<K>) => {
[x: string]: any;
};
/**
* 取得沾黏的設定 (Right)
* @param title
* @param data
*/
export declare const getHeaderStickyRightConfig: <K extends string>(title: TTableTitle<K>) => {
[x: string]: any;
};