@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
15 lines • 558 B
TypeScript
import { PickedItemType } from './PickedItem';
import { ContentSearchMode } from '../content-search/types';
interface SortableListProps {
posts: Array<PickedItemType>;
isOrderable: boolean;
handleItemDelete: (post: PickedItemType) => void;
mode: ContentSearchMode;
setPosts: (posts: Array<PickedItemType>) => void;
PickedItemPreviewComponent?: React.ComponentType<{
item: PickedItemType;
}>;
}
declare const SortableList: React.FC<SortableListProps>;
export default SortableList;
//# sourceMappingURL=SortableList.d.ts.map