25 lines
472 B
Markdown
25 lines
472 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [ServerInfo](./calckey-js.entities.serverinfo.md)
|
||
|
|
||
|
## entities.ServerInfo type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export declare type ServerInfo = {
|
||
|
machine: string;
|
||
|
cpu: {
|
||
|
model: string;
|
||
|
cores: number;
|
||
|
};
|
||
|
mem: {
|
||
|
total: number;
|
||
|
};
|
||
|
fs: {
|
||
|
total: number;
|
||
|
used: number;
|
||
|
};
|
||
|
};
|
||
|
```
|