UNPKG
@kform/scaffolder
Version:
latest (0.30.0)
0.30.0
0.29.1
0.29.0
0.28.2
0.28.1
0.28.0
0.27.5
0.27.4
0.27.3
0.27.2
0.27.1
0.27.0
0.27.0-beta.20
0.27.0-beta.19
0.27.0-beta.18
0.27.0-beta.17
0.27.0-beta.16
0.27.0-beta.15
0.27.0-beta.14
0.27.0-beta.13
0.27.0-beta.12
0.27.0-beta.11
0.27.0-beta.10
0.27.0-beta.9
0.27.0-beta.8
0.27.0-beta.7
0.27.0-beta.6
0.27.0-beta.5
0.27.0-beta.4
0.27.0-beta.3
0.27.0-beta.2
0.27.0-beta.1
0.27.0-beta.0
Scaffolding utilities for KForm projects.
bitbucket.org/opensoftgitrepo/kform
@kform/scaffolder
/
types
/
util
/
preventDrag.d.ts
9 lines
(8 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
React
from
"react"
;
/** * Properties used to prevent an element from being dragged. */
export
declare
const
preventDrag
: {
onKeyDown
:
(
evt
:
React
.
KeyboardEvent
) =>
void
;
onPointerDown
:
(
evt
:
React
.
PointerEvent
) =>
void
; };