- 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
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
/**
|
|
* Input:
|
|
* Error: Something went wrong
|
|
at funcName (/path/to/file.js:10:5)
|
|
at anotherFunc (/path/to/file.js:15:10)
|
|
|
|
* Output:
|
|
at funcName (/path/to/file.js:10:5)
|
|
at anotherFunc (/path/to/file.js:15:10)
|
|
*/
|
|
export declare function getStackWithoutErrorMessage(error: Error): string;
|
|
export declare function formatServerError(error: Error): void;
|