heartbeat-monitor/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.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

23 lines
767 B
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
export type PagesManifest = {
[page: string]: string;
};
export declare let edgeServerPages: {};
export declare let nodeServerPages: {};
export declare let edgeServerAppPaths: {};
export declare let nodeServerAppPaths: {};
export default class PagesManifestPlugin implements webpack.WebpackPluginInstance {
dev: boolean;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
constructor({ dev, distDir, isEdgeRuntime, appDirEnabled, }: {
dev: boolean;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
});
createAssets(compilation: any, assets: any): Promise<void>;
apply(compiler: webpack.Compiler): void;
}