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/utils/is.d.ts

13 lines
706 B

4 years ago
export declare const window: (thing: any) => thing is Window;
export declare const docFrag: (thing: any) => thing is DocumentFragment;
export declare const object: (thing: any) => thing is {
[index: string]: any;
};
export declare const func: (thing: any) => thing is (...args: any[]) => any;
export declare const number: (thing: any) => thing is number;
export declare const bool: (thing: any) => thing is boolean;
export declare const string: (thing: any) => thing is string;
export declare const element: (thing: any) => thing is import("@interactjs/types/types").Element;
export declare const plainObject: typeof object;
export declare const array: <T extends unknown>(thing: any) => thing is T[];