/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { Package } from "@fluidframework/build-tools"; import { PackageCommand } from "../BasePackageCommand.js"; import type { PackageSelectionDefault } from "../flags.js"; export default class ExecCommand extends PackageCommand { static readonly description = "Run a shell command in the context of a package or release group."; static readonly args: { readonly cmd: import("@oclif/core/interfaces").Arg>; }; protected defaultSelection: PackageSelectionDefault; protected processPackage(pkg: Package): Promise; } //# sourceMappingURL=exec.d.ts.map