Type Alias EdgeDeleteConfirmationFunction

EdgeDeleteConfirmationFunction: ((params: {
    e: MouseEvent;
    edge: Edge;
}, proceed: (() => any)) => any)

Definition of the function you can provide as deleteConfirm on an edge definition. JsPlumb gives you the edge to be possibly deleted and the mouse event that instigated the deletion. If you wish to delete the edge you must invoke the proceed() function.

Version :