data.d.ts 1.08 KB
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
export interface IVisitData {
  x: string;
  y: number;
}

export interface IVisitData2 {
  x: string;
  y: number;
}

export interface ISalesData {
  x: string;
  y: number;
}

export interface ISearchData {
  index: number;
  keyword: string;
  count: number;
  range: number;
  status: number;
}

export interface IOfflineData {
  name: string;
  cvr: number;
}

export interface IOfflineChartData {
  x: any;
  y1: number;
  y2: number;
}

export interface ISalesTypeData {
  x: string;
  y: number;
}

export interface ISalesTypeDataOnline {
  x: string;
  y: number;
}

export interface ISalesTypeDataOffline {
  x: string;
  y: number;
}

export interface IRadarData {
  name: string;
  label: string;
  value: number;
}

export interface IAnalysisData {
  visitData: IVisitData[];
  visitData2: IVisitData2[];
  salesData: ISalesData[];
  searchData: ISearchData[];
  offlineData: IOfflineData[];
  offlineChartData: IOfflineChartData[];
  salesTypeData: ISalesTypeData[];
  salesTypeDataOnline: ISalesTypeDataOnline[];
  salesTypeDataOffline: ISalesTypeDataOffline[];
  radarData: IRadarData[];
}