child-command.js 979 B

12345678910111213141516
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.ChildCommand = void 0;
  4. var ChildCommand;
  5. (function (ChildCommand) {
  6. ChildCommand[ChildCommand["Init"] = 0] = "Init";
  7. ChildCommand[ChildCommand["Start"] = 1] = "Start";
  8. ChildCommand[ChildCommand["Stop"] = 2] = "Stop";
  9. ChildCommand[ChildCommand["GetChildrenValuesResponse"] = 3] = "GetChildrenValuesResponse";
  10. ChildCommand[ChildCommand["GetIgnoredChildrenFailuresResponse"] = 4] = "GetIgnoredChildrenFailuresResponse";
  11. ChildCommand[ChildCommand["GetDependenciesCountResponse"] = 5] = "GetDependenciesCountResponse";
  12. ChildCommand[ChildCommand["MoveToWaitingChildrenResponse"] = 6] = "MoveToWaitingChildrenResponse";
  13. ChildCommand[ChildCommand["Cancel"] = 7] = "Cancel";
  14. ChildCommand[ChildCommand["GetDependenciesResponse"] = 8] = "GetDependenciesResponse";
  15. })(ChildCommand || (exports.ChildCommand = ChildCommand = {}));
  16. //# sourceMappingURL=child-command.js.map