/**
 * A HeatmapFeature denotes the name of a row / column and an index associated with this feature.
 */
export default interface HeatmapFeature {
    name: string,
    idx: number,
}
