@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration
Version:
An optional Pragmatic drag and drop package that enables rapid migration from react-beautiful-dnd to Pragmatic drag and drop
9 lines (8 loc) • 320 B
TypeScript
import type { ContextId } from 'react-beautiful-dnd';
export declare function getHiddenTextElementId(contextId: string): string;
type UseHiddenTextElementArgs = {
contextId: ContextId;
text: string;
};
export default function useHiddenTextElement({ contextId, text }: UseHiddenTextElementArgs): void;
export {};