File size: 215 Bytes
fc0f7bd
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { RangeTypes } from "mlchartlib";

export interface IBinnedResponse {
    hasError: boolean;
    array: Array<number | string>;
    labelArray: string[];
    featureIndex: number;
    rangeType: RangeTypes;
}