@ucloud-fe/react-components
Version:
UCloud react components
17 lines (16 loc) • 539 B
TypeScript
declare function TableHeader(props: any, { table }: {
table: any;
}): JSX.Element | null;
declare namespace TableHeader {
namespace propTypes {
const fixed: PropTypes.Requireable<string>;
const columns: PropTypes.Validator<any[]>;
const expander: PropTypes.Validator<object>;
const onHeaderRow: PropTypes.Requireable<(...args: any[]) => any>;
}
namespace contextTypes {
const table: PropTypes.Requireable<any>;
}
}
export default TableHeader;
import PropTypes from "prop-types";