UNPKG

react-mosaic-component

Version:
17 lines (16 loc) 423 B
import { MosaicPath } from './types'; export type MosaicDropTargetPosition = 'top' | 'bottom' | 'left' | 'right'; export declare const MosaicDropTargetPosition: { TOP: "top"; BOTTOM: "bottom"; LEFT: "left"; RIGHT: "right"; }; export interface MosaicDropData { path?: MosaicPath; position?: MosaicDropTargetPosition; } export interface MosaicDragItem { mosaicId: string; hideTimer: number; }