All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
import { FC } from 'react';
|
|
import { ConnectDragPreview } from '../types';
|
|
export interface DragPreviewImageProps {
|
|
connect: ConnectDragPreview;
|
|
src: string;
|
|
}
|
|
/**
|
|
* A utility for rendering a drag preview image
|
|
*/
|
|
export declare const DragPreviewImage: FC<DragPreviewImageProps>;
|