- 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
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
|
export declare class CopyFilePlugin {
|
|
private filePath;
|
|
private name;
|
|
private cacheKey;
|
|
private info?;
|
|
constructor({ filePath, cacheKey, name, info, }: {
|
|
filePath: string;
|
|
cacheKey: string;
|
|
name: string;
|
|
minimize: boolean;
|
|
info?: object;
|
|
});
|
|
apply(compiler: webpack.Compiler): void;
|
|
}
|