export interface IScaleData { min: number; max: number; increment: number; totalIncrements: number; expandPositive(by: number): void; expandNegative(by: number): void; }