@arco-design/web-react
Version:
Arco Design React UI Library.
11 lines (10 loc) • 341 B
TypeScript
import React from 'react';
import { TableProps } from './interface';
export interface TableInstance {
getRootDomElement: () => HTMLDivElement;
scrollIntoView: (dataIndex: React.Key) => void;
}
declare const _default: <T>(props: TableProps<T> & {
ref?: React.Ref<TableInstance>;
}) => React.ReactElement;
export default _default;