tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
25 lines • 690 B
TypeScript
import { RefObject } from 'react';
import type { ColumnSetting } from './hooks/use-column-setting';
export interface TableContextValue {
/**
* column setting
*/
columnSetting?: ColumnSetting[];
/**
* container ref
*/
tableContainer?: RefObject<HTMLDivElement>;
/**
* set column setting function
*/
setColumnSetting?(columnSetting: ColumnSetting[] | undefined): void;
/**
* refresh function
*/
refresh?(): void;
upperCaseIgnore?: string[];
unUpperConverted?: boolean;
unTooltip?: boolean;
}
export declare const TableContext: import("react").Context<TableContextValue>;
//# sourceMappingURL=context.d.ts.map