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.
InternshipProject/node_modules/rc-table/es/context/TableContext.d.ts

14 lines
439 B

import * as React from 'react';
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: React.Context<TableContextProps>;
export default TableContext;