/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Generate a standalone HTML dashboard artifact from processed metrics. * The generated file contains data for a single mode (public or internal) * inlined directly into the HTML, so it can be viewed offline. */ export default class BuildPerfHtmlCommand extends BaseCommand { static readonly description = "Generate a standalone HTML dashboard artifact from processed metrics."; static readonly flags: { mode: import("@oclif/core/interfaces").OptionFlag; inputDir: import("@oclif/core/interfaces").OptionFlag; outputDir: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise; } //# sourceMappingURL=generate.d.ts.map