You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
397 B
13 lines
397 B
import * as React from 'react';
|
|
import { GetComponent } from '../interface';
|
|
import { FixedInfo } from '../utils/fixUtil';
|
|
export interface TableContextProps {
|
|
prefixCls: string;
|
|
getComponent: GetComponent;
|
|
scrollbarSize: number;
|
|
direction: 'ltr' | 'rtl';
|
|
fixedInfoList: FixedInfo[];
|
|
}
|
|
declare const TableContext: React.Context<TableContextProps>;
|
|
export default TableContext;
|