- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
18 lines
433 B
TypeScript
18 lines
433 B
TypeScript
type AnonymousMeta = {
|
|
systemPlatform: NodeJS.Platform;
|
|
systemRelease: string;
|
|
systemArchitecture: string;
|
|
cpuCount: number;
|
|
cpuModel: string | null;
|
|
cpuSpeed: number | null;
|
|
memoryInMb: number;
|
|
isDocker: boolean;
|
|
isNowDev: boolean;
|
|
isWsl: boolean;
|
|
isCI: boolean;
|
|
ciName: string | null;
|
|
nextVersion: string;
|
|
};
|
|
export declare function getAnonymousMeta(): AnonymousMeta;
|
|
export {};
|