@wix/design-system
Version:
@wix/design-system
22 lines • 652 B
TypeScript
export default DragDropContextProvider;
declare class DragDropContextProvider extends React.Component<any, any, any> {
static defaultProps: {
backend: import("dnd-core").BackendFactory;
backendOptions: {};
};
static contextTypes: {
dragDropManager: () => null;
};
static childContextTypes: {
dragDropManager: () => null;
};
constructor(props: any);
constructor(props: any, context: any);
getManager(): any;
getChildContext(): {
dragDropManager: any;
};
render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=DragDropContextProvider.d.ts.map