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.
 
 
 
 
StackGenVis/frontend/node_modules/@interactjs/actions/drag.d.ts

23 lines
690 B

import { ActionName } from '@interactjs/core/scope';
declare module '@interactjs/core/Interactable' {
interface Interactable {
draggable: DraggableMethod;
}
}
declare module '@interactjs/core/defaultOptions' {
interface ActionDefaults {
drag: Interact.DraggableOptions;
}
}
declare module '@interactjs/core/scope' {
interface Actions {
[ActionName.Drag]?: typeof drag;
}
enum ActionName {
Drag = "drag"
}
}
export declare type DragEvent = Interact.InteractEvent<ActionName.Drag>;
export declare type DraggableMethod = Interact.ActionMethod<Interact.DraggableOptions>;
declare const drag: Interact.Plugin;
export default drag;