heartbeat-monitor/node_modules/next/dist/build/templates/app-page.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

17 lines
602 B
TypeScript

import type { LoaderTree } from '../../server/lib/app-dir-module';
import { AppPageRouteModule } from '../../server/route-modules/app-page/module.compiled';
/**
* The tree created in next-app-loader that holds component segments and modules
* and I've updated it.
*/
declare const tree: LoaderTree;
declare const pages: any;
export { tree, pages };
export { default as GlobalError } from 'VAR_MODULE_GLOBAL_ERROR';
export declare const __next_app__: {
require: any;
loadChunk: any;
};
export * from '../../server/app-render/entry-base';
export declare const routeModule: AppPageRouteModule;