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.
54 lines
1.7 KiB
54 lines
1.7 KiB
import Interactable from '@interactjs/core/Interactable';
|
|
import InteractEvent from '@interactjs/core/InteractEvent';
|
|
export interface DropzoneMethod {
|
|
(options: Interact.DropzoneOptions | boolean): Interact.Interactable;
|
|
(): Interact.DropzoneOptions;
|
|
}
|
|
declare module '@interactjs/core/Interactable' {
|
|
interface Interactable {
|
|
dropzone: DropzoneMethod;
|
|
dropCheck: (dragEvent: InteractEvent, event: Interact.PointerEventType, draggable: Interactable, draggableElement: Interact.Element, dropElemen: Interact.Element, rect: any) => boolean;
|
|
}
|
|
}
|
|
declare module '@interactjs/core/Interaction' {
|
|
interface Interaction {
|
|
dropState?: {
|
|
cur: {
|
|
dropzone: Interactable;
|
|
element: Interact.Element;
|
|
};
|
|
prev: {
|
|
dropzone: Interactable;
|
|
element: Interact.Element;
|
|
};
|
|
rejected: boolean;
|
|
events: any;
|
|
activeDrops: Array<{
|
|
dropzone: Interactable;
|
|
element: Interact.Element;
|
|
rect: Interact.Rect;
|
|
}>;
|
|
};
|
|
}
|
|
}
|
|
declare module '@interactjs/core/defaultOptions' {
|
|
interface ActionDefaults {
|
|
drop: Interact.DropzoneOptions;
|
|
}
|
|
}
|
|
interface DropSignalArg {
|
|
interaction: Interact.Interaction;
|
|
dragEvent: Interact.DragEvent;
|
|
}
|
|
declare module '@interactjs/core/scope' {
|
|
interface Scope {
|
|
dynamicDrop?: boolean;
|
|
}
|
|
interface SignalArgs {
|
|
'actions/drop:start': DropSignalArg;
|
|
'actions/drop:move': DropSignalArg;
|
|
'actions/drop:end': DropSignalArg;
|
|
}
|
|
}
|
|
declare const drop: Interact.Plugin;
|
|
export default drop;
|
|
|