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