@chamn/engine
Version:
10 lines (9 loc) • 396 B
TypeScript
import { ModalProps } from 'antd';
export type SortItemOrderProps = {
list: any[];
keyPaths: string[];
label: string;
sortLabelKey?: string;
onValueChange?: (newList: any[]) => void;
} & ModalProps;
export declare const SortItemOrderModal: ({ list, onValueChange, keyPaths, label, sortLabelKey, ...modalProps }: SortItemOrderProps) => import("react/jsx-runtime").JSX.Element;