tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 492 B
TypeScript
import React, { RefAttributes } from 'react';
import type { BaseTableProps, BaseTableRef } from './interface';
import type { TableRowData } from './type';
export declare const BASE_TABLE_EVENTS: string[];
export declare const BASE_TABLE_ALL_EVENTS: string[];
export interface TableListeners {
[key: string]: Function;
}
declare const _default: <T extends TableRowData = TableRowData>(props: BaseTableProps<T> & RefAttributes<BaseTableRef>) => React.ReactElement;
export default _default;