mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-04 13:04:13 +08:00
14 lines
283 B
Go
14 lines
283 B
Go
![]() |
export namespace Monitor {
|
||
|
export interface MonitorData {
|
||
|
param: string;
|
||
|
date: Array<Date>;
|
||
|
value: Array<any>;
|
||
|
}
|
||
|
export interface MonitorSearch {
|
||
|
param: string;
|
||
|
info: string;
|
||
|
startTime: Date;
|
||
|
endTime: Date;
|
||
|
}
|
||
|
}
|