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.
34 lines
1022 B
34 lines
1022 B
4 years ago
|
import { ActionName } from '@interactjs/core/scope';
|
||
|
export declare type EdgeName = 'top' | 'left' | 'bottom' | 'right';
|
||
|
export declare type ResizableMethod = Interact.ActionMethod<Interact.ResizableOptions>;
|
||
|
declare module '@interactjs/core/Interactable' {
|
||
|
interface Interactable {
|
||
|
resizable: ResizableMethod;
|
||
|
}
|
||
|
}
|
||
|
declare module '@interactjs/core/Interaction' {
|
||
|
interface Interaction {
|
||
|
resizeAxes: 'x' | 'y' | 'xy';
|
||
|
resizeStartAspectRatio: number;
|
||
|
}
|
||
|
}
|
||
|
declare module '@interactjs/core/defaultOptions' {
|
||
|
interface ActionDefaults {
|
||
|
resize: Interact.ResizableOptions;
|
||
|
}
|
||
|
}
|
||
|
declare module '@interactjs/core/scope' {
|
||
|
interface Actions {
|
||
|
[ActionName.Resize]?: typeof resize;
|
||
|
}
|
||
|
enum ActionName {
|
||
|
Resize = "resize"
|
||
|
}
|
||
|
}
|
||
|
export interface ResizeEvent extends Interact.InteractEvent<ActionName.Resize> {
|
||
|
deltaRect?: Interact.FullRect;
|
||
|
edges?: Interact.ActionProps['edges'];
|
||
|
}
|
||
|
declare const resize: Interact.Plugin;
|
||
|
export default resize;
|