mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
25 lines
551 B
Markdown
25 lines
551 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [iceshrimp-sdk](./iceshrimp-sdk.md) > [entities](./iceshrimp-sdk.entities.md) > [ServerInfo](./iceshrimp-sdk.entities.serverinfo.md)
|
||
|
|
||
|
## entities.ServerInfo type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export type ServerInfo = {
|
||
|
machine: string;
|
||
|
cpu: {
|
||
|
model: string;
|
||
|
cores: number;
|
||
|
};
|
||
|
mem: {
|
||
|
total: number;
|
||
|
};
|
||
|
fs: {
|
||
|
total: number;
|
||
|
used: number;
|
||
|
};
|
||
|
};
|
||
|
```
|