@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines • 589 B
text/typescript
import DragHandle from "./components/DragHandle.mjs";
import SortableItem from "./components/SortableItem.mjs";
import { SortableListItem, SortableListProps } from "./type.mjs";
import { ReactNode } from "react";
//#region src/SortableList/SortableList.d.ts
interface ISortableList {
<T extends SortableListItem = SortableListItem>(props: SortableListProps<T>): ReactNode;
DragHandle: typeof DragHandle;
Item: typeof SortableItem;
}
declare const SortableList: ISortableList;
//#endregion
export { ISortableList, SortableList as default };
//# sourceMappingURL=SortableList.d.mts.map