mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-28 00:20:00 -07:00
27 lines
509 B
TypeScript
27 lines
509 B
TypeScript
export interface SystemStats {
|
|
disk_stats: DiskStats;
|
|
memory_stats: MemoryStats;
|
|
runtime_metadata: RuntimeMetadata;
|
|
}
|
|
|
|
export interface RuntimeMetadata {
|
|
rayhunter_version: string,
|
|
system_os: string,
|
|
arch: string,
|
|
}
|
|
|
|
export interface DiskStats {
|
|
partition: string,
|
|
total_size: string,
|
|
used_size: string,
|
|
available_size: string,
|
|
used_percent: string,
|
|
mounted_on: string,
|
|
}
|
|
|
|
export interface MemoryStats {
|
|
total: string,
|
|
used: string,
|
|
free: string,
|
|
}
|