Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DragEventHandler

A function that will be called when the dragover event is fired. You can return false to disable the current drop point and thus hide the drop indicator.

type DragEventHandler = (options: DragEventHandlerOptions) => boolean;

§Type

§
(options: DragEventHandlerOptions) => boolean
[src]