/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * Rewrite imports for Fluid Framework APIs to use the correct subpath import (/beta, /legacy, etc.). */ export default class UpdateFluidImportsCommand extends BaseCommand { static readonly description = "Rewrite imports for Fluid Framework APIs to use the correct subpath import (/beta, /legacy, etc.)"; static readonly flags: { tsconfigs: import("@oclif/core/interfaces").OptionFlag; packageRegex: import("@oclif/core/interfaces").OptionFlag; data: import("@oclif/core/interfaces").OptionFlag; onlyInternal: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } //# sourceMappingURL=fluid-imports.d.ts.map