/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../library/index.js"; /** * Renames all d.ts files in the lib/ folder to .d.mts. * * @remarks * This command is primarily used in our build system to rename type declarations in ESM builds. */ export default class RenameTypesCommand extends BaseCommand { static readonly description = "Renames type declaration files from .d.ts to .d.mts."; run(): Promise; } //# sourceMappingURL=rename-types.d.ts.map