react-dnd
Version:
Drag and Drop for React
16 lines (13 loc) • 417 B
text/typescript
import { invariant } from '@react-dnd/invariant'
import type { Identifier } from 'dnd-core'
import { useMemo } from 'react'
import type { DragSourceHookSpec } from '../types.js'
export function useDragType(
spec: DragSourceHookSpec<any, any, any>,
): Identifier {
return useMemo(() => {
const result: Identifier = spec.type
invariant(result != null, 'spec.type must be defined')
return result
}, [spec])
}