UNPKG

@zendesk/retrace

Version:

define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API

8 lines (7 loc) 288 B
import { type DragEventHandler, type ReactElement } from 'react'; import * as React from 'react'; export interface DropTargetProps { onDrop: DragEventHandler; children: ReactElement; } export declare const DropTarget: ({ onDrop, children }: DropTargetProps) => React.JSX.Element;