Input.setInterceptDragsPrevents default drag and drop behavior and instead emits `Input.dragIntercepted` events. Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`.
| Name | Type | Description |
|---|---|---|
enabled | boolean |
{
"id": 1,
"method": "Input.setInterceptDrags",
"params": {
"enabled": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('Input.setInterceptDrags', {"enabled": true});
console.log(result);