Repository URL to install this package:
|
Version:
4.0.116 ▾
|
import React from 'react';
import { SeparateDropProps, EventTransition } from './typings';
import { SeperateDropState } from './state';
export default class SeparateDrop extends React.Component<SeparateDropProps> {
observableState: SeperateDropState;
handleDragOver: () => void;
handleDragStart: (props: EventTransition) => void;
handleOnDrag: (props: EventTransition) => void;
handleDragEnd: () => void;
render(): JSX.Element;
}
export { SeparateDrop };