UNPKG

464 BTypeScriptView Raw
1import * as React from 'react';
2export interface DraggableProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside DragDrop */
4 children?: React.ReactNode;
5 /** Don't wrap the component in a div. Requires passing a single child. */
6 hasNoWrapper?: boolean;
7 /** Class to add to outer div */
8 className?: string;
9}
10export declare const Draggable: React.FunctionComponent<DraggableProps>;
11//# sourceMappingURL=Draggable.d.ts.map
\No newline at end of file