- 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
17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
export type BuildManifest = {
|
|
devFiles: readonly string[];
|
|
ampDevFiles: readonly string[];
|
|
polyfillFiles: readonly string[];
|
|
lowPriorityFiles: readonly string[];
|
|
rootMainFiles: readonly string[];
|
|
rootMainFilesTree: {
|
|
[appRoute: string]: readonly string[];
|
|
};
|
|
pages: {
|
|
'/_app': readonly string[];
|
|
[page: string]: readonly string[];
|
|
};
|
|
ampFirstPages: readonly string[];
|
|
};
|
|
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];
|