UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

14 lines (13 loc) 354 B
import React from "react"; import "./style"; export interface ITableSortProps { onSort?: ((order: "asc" | "desc" | "") => void) | null; sortOrder?: null | "" | "asc" | "desc"; title?: React.ReactNode; sortableAndFilterable?: boolean; } /** * 表格排序 */ declare const TableSort: React.FC<ITableSortProps>; export default TableSort;