@ucloud-pccl/react-components
Version:
UCloud pccl react components
18 lines (17 loc) • 572 B
TypeScript
declare function TableHeader(props: any, { table }: {
table: any;
}): React.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 React from "react";
import PropTypes from "prop-types";