@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 409 B
TypeScript
import { type ReactNode } from 'react';
import DragHandle from './components/DragHandle';
import SortableItem from './components/SortableItem';
import type { SortableListProps } from './type';
export interface ISortableList {
(props: SortableListProps): ReactNode;
DragHandle: typeof DragHandle;
Item: typeof SortableItem;
}
declare const SortableList: ISortableList;
export default SortableList;