heartbeat-monitor/node_modules/next/dist/server/patch-error-inspect.d.ts
Matt Bruce bed1169443 Initial commit: Heartbeat Monitor dashboard
- 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
2026-02-18 11:16:01 -06:00

26 lines
897 B
TypeScript

import { type SourceMapPayload } from 'module';
type FindSourceMapPayload = (sourceURL: string) => ModernSourceMapPayload | undefined;
export declare function setBundlerFindSourceMapImplementation(findSourceMapImplementation: FindSourceMapPayload): void;
/**
* https://tc39.es/source-map/#index-map
*/
interface IndexSourceMapSection {
offset: {
line: number;
column: number;
};
map: ModernRawSourceMap;
}
interface IndexSourceMap {
version: number;
file: string;
sections: IndexSourceMapSection[];
}
interface ModernRawSourceMap extends SourceMapPayload {
ignoreList?: number[];
}
export type ModernSourceMapPayload = ModernRawSourceMap | IndexSourceMap;
export declare function patchErrorInspectNodeJS(errorConstructor: ErrorConstructor): void;
export declare function patchErrorInspectEdgeLite(errorConstructor: ErrorConstructor): void;
export {};