stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines • 428 B
TypeScript
import type { PropsWithChildren } from 'react';
export type DragAndDropContainerProps = PropsWithChildren<{
className?: string;
draggable?: boolean;
onSetNewOrder?: (newOrder: number[]) => void;
}>;
export declare const DragAndDropContainer: ({ children, className, draggable, onSetNewOrder, }: DragAndDropContainerProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=DragAndDropContainer.d.ts.map