@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
15 lines (14 loc) • 572 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 { SortableList };
//# sourceMappingURL=SortableList.d.mts.map