@bizhermit/react-sdk
Version:
React SDK
12 lines (11 loc) • 342 B
TypeScript
import { ListViewColumnProps } from "../list-view";
declare type Props = {
name?: string;
width?: number;
disabled?: boolean;
range?: "cell" | "row";
fixed?: boolean;
borderless?: boolean;
};
declare const ListViewReorderColumn: (props?: Props) => ListViewColumnProps;
export default ListViewReorderColumn;