StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
import BaseEvent from '@interactjs/core/BaseEvent';
|
|
import Interactable from '@interactjs/core/Interactable';
|
|
import InteractEvent from '@interactjs/core/InteractEvent';
|
|
import Interaction from '@interactjs/core/Interaction';
|
|
import { ActionName } from '@interactjs/core/scope';
|
|
declare class DropEvent extends BaseEvent {
|
|
target: Interact.Element;
|
|
dropzone: Interactable;
|
|
dragEvent: InteractEvent<ActionName.Drag>;
|
|
relatedTarget: Interact.Element;
|
|
draggable: Interactable;
|
|
timeStamp: number;
|
|
propagationStopped: boolean;
|
|
immediatePropagationStopped: boolean;
|
|
/**
|
|
* Class of events fired on dropzones during drags with acceptable targets.
|
|
*/
|
|
constructor(dropState: Interaction['dropState'], dragEvent: InteractEvent, type: string);
|
|
/**
|
|
* If this is a `dropactivate` event, the dropzone element will be
|
|
* deactivated.
|
|
*
|
|
* If this is a `dragmove` or `dragenter`, a `dragleave` will be fired on the
|
|
* dropzone element and more.
|
|
*/
|
|
reject(): void;
|
|
preventDefault(): void;
|
|
stopPropagation(): void;
|
|
stopImmediatePropagation(): void;
|
|
}
|
|
export default DropEvent;
|
|
|