zhangxiao
2024-09-02 432d47bd7fa2eac4f084f7f1dfdef452de760ae8
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
export interface AnyObject {
  [key: string]: unknown;
}
 
export interface Options {
  value: unknown;
  label: string;
}
 
export interface NodeOptions extends Options {
  children?: NodeOptions[];
}
 
export interface GetParams {
  body: null;
  type: string;
  url: string;
}
 
export interface PostData {
  body: string;
  type: string;
  url: string;
}
 
export interface Pagination {
  current: number;
  pageSize: number;
  total?: number;
}
 
export type TimeRanger = [string, string];
 
export interface GeneralChart {
  xAxis: string[];
  data: Array<{ name: string; value: number[] }>;
}