- 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
25 lines
630 B
TypeScript
25 lines
630 B
TypeScript
export type OutputState = {
|
|
bootstrap: true;
|
|
appUrl: string | null;
|
|
bindAddr: string | null;
|
|
logging: boolean;
|
|
} | ({
|
|
bootstrap: false;
|
|
appUrl: string | null;
|
|
bindAddr: string | null;
|
|
logging: boolean;
|
|
} & ({
|
|
loading: true;
|
|
trigger: string | undefined;
|
|
url: string | undefined;
|
|
} | {
|
|
loading: false;
|
|
typeChecking: boolean;
|
|
totalModulesCount: number;
|
|
errors: string[] | null;
|
|
warnings: string[] | null;
|
|
hasEdgeServer: boolean;
|
|
}));
|
|
export declare function formatTrigger(trigger: string): string;
|
|
export declare const store: import("unistore").Store<OutputState>;
|