import ICategoryAnalysis from "./ICategoryAnalysis";
export default interface IAnalysis {
    date: number;
    categories: ICategoryAnalysis[];
}
