首次提交

This commit is contained in:
2023-06-04 20:01:58 +08:00
parent 00c64c53bb
commit 587f078d21
560 changed files with 106725 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { CallbackDataParams } from 'echarts/types/dist/shared'
export interface ToolTipFormatterParams extends CallbackDataParams {
axisDim: string
axisIndex: number
axisType: string
axisId: string
axisValue: string
axisValueLabel: string
}

View File

@@ -0,0 +1,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[] }>
}

View File

@@ -0,0 +1,5 @@
export interface MockParams {
url: string
type: string
body: string
}