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
978 B
34 lines
978 B
declare module '@interactjs/core/defaultOptions' {
|
|
interface PerActionDefaults {
|
|
hold?: number;
|
|
delay?: number;
|
|
}
|
|
}
|
|
declare module '@interactjs/core/Interaction' {
|
|
interface Interaction {
|
|
autoStartHoldTimer?: any;
|
|
}
|
|
}
|
|
declare function install(scope: Interact.Scope): void;
|
|
declare function getHoldDuration(interaction: any): any;
|
|
declare const _default: {
|
|
id: string;
|
|
install: typeof install;
|
|
listeners: {
|
|
'interactions:new': ({ interaction }: {
|
|
interaction: any;
|
|
}) => void;
|
|
'autoStart:prepared': ({ interaction }: {
|
|
interaction: any;
|
|
}) => void;
|
|
'interactions:move': ({ interaction, duplicate }: {
|
|
interaction: any;
|
|
duplicate: any;
|
|
}) => void;
|
|
'autoStart:before-start': ({ interaction }: {
|
|
interaction: any;
|
|
}) => void;
|
|
};
|
|
getHoldDuration: typeof getHoldDuration;
|
|
};
|
|
export default _default;
|
|
|