import { TimeUnit } from "../defs/TimeUnit";
export interface ITimeInterval {
    timeUnit: TimeUnit;
    count: number;
}
