/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; export default class Bundlestats extends BaseCommand { static readonly description = "Generate a report from input bundle stats collected through the collect bundleStats command."; static readonly aliases: string[]; static readonly deprecateAliases = true; static readonly flags: { dangerfile: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } //# sourceMappingURL=bundleStats.d.ts.map