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.
28 lines
1017 B
28 lines
1017 B
declare module '@interactjs/core/Interactable' {
|
|
interface Interactable {
|
|
getAction: (this: Interact.Interactable, pointer: Interact.PointerType, event: Interact.PointerEventType, interaction: Interact.Interaction, element: Interact.Element) => Interact.ActionProps | null;
|
|
styleCursor: typeof styleCursor;
|
|
actionChecker: typeof actionChecker;
|
|
ignoreFrom: {
|
|
(...args: any[]): Interactable;
|
|
(): boolean;
|
|
};
|
|
allowFrom: {
|
|
(...args: any[]): Interactable;
|
|
(): boolean;
|
|
};
|
|
}
|
|
}
|
|
declare module '@interactjs/core/Interaction' {
|
|
interface Interaction {
|
|
pointerIsDown: boolean;
|
|
}
|
|
}
|
|
declare function install(scope: Interact.Scope): void;
|
|
declare function styleCursor(this: Interact.Interactable, newValue?: boolean): any;
|
|
declare function actionChecker(this: Interact.Interactable, checker: any): any;
|
|
declare const _default: {
|
|
id: string;
|
|
install: typeof install;
|
|
};
|
|
export default _default;
|
|
|