mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 01:09:17 +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;
|
|
}
|
|
}
|