heartbeat-monitor/node_modules/next/dist/server/web/sandbox/sandbox.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

22 lines
967 B
TypeScript

import type { NodejsRequestData, FetchEventResult } from '../types';
import type { EdgeFunctionDefinition } from '../../../build/webpack/plugins/middleware-plugin';
import type { EdgeRuntime } from 'next/dist/compiled/edge-runtime';
import type { ServerComponentsHmrCache } from '../../response-cache';
export declare const ErrorSource: unique symbol;
interface RunnerFnParams {
name: string;
onError?: (err: unknown) => void;
onWarning?: (warn: Error) => void;
paths: string[];
request: NodejsRequestData;
useCache: boolean;
edgeFunctionEntry: Pick<EdgeFunctionDefinition, 'assets' | 'wasm' | 'env'>;
distDir: string;
incrementalCache?: any;
serverComponentsHmrCache?: ServerComponentsHmrCache;
}
type RunnerFn = (params: RunnerFnParams) => Promise<FetchEventResult>;
export declare function getRuntimeContext(params: Omit<RunnerFnParams, 'request'>): Promise<EdgeRuntime<any>>;
export declare const run: RunnerFn;
export {};