暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

emulators-export.js 666B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.command = void 0;
  4. const command_1 = require("../command");
  5. const controller = require("../emulator/controller");
  6. const commandUtils = require("../emulator/commandUtils");
  7. const COMMAND_NAME = "emulators:export";
  8. exports.command = new command_1.Command(`${COMMAND_NAME} <path>`)
  9. .description("export data from running emulators")
  10. .withForce("overwrite any export data in the target directory")
  11. .option(commandUtils.FLAG_ONLY, commandUtils.DESC_ONLY)
  12. .action((exportPath, options) => {
  13. return controller.exportEmulatorData(exportPath, options, COMMAND_NAME);
  14. });