UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

13 lines (12 loc) β€’ 442 B
import type { GetComponent } from '../interface'; import type { FixedInfo } from '../utils/fixUtil'; export interface TableContextProps { prefixCls: string; getComponent: GetComponent; scrollbarSize: number; direction: 'ltr' | 'rtl'; fixedInfoList: readonly FixedInfo[]; isSticky: boolean; } declare const TableContext: import("../ContextSelector").ReturnCreateContext<TableContextProps>; export default TableContext;