choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
12 lines (11 loc) • 383 B
TypeScript
import { CSSProperties } from 'react';
import TableStore from './TableStore';
export interface Props {
rtl: boolean;
hasCustomTreeCol: boolean;
isTree: boolean;
translateDOMPositionXY: null | ((style: CSSProperties, x: number, y: number) => void);
tableStore: TableStore;
}
declare const TableContext: import("react").Context<Props>;
export default TableContext;