GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
405 B

2 months ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. const error_1 = require("./error");
  4. function requireInteractive(options) {
  5. if (options.nonInteractive) {
  6. return Promise.reject(new error_1.FirebaseError("This command cannot run in non-interactive mode", {
  7. exit: 1,
  8. }));
  9. }
  10. return Promise.resolve();
  11. }
  12. exports.default = requireInteractive;