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
484 B
12 lines
484 B
"use strict";
|
|
// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
|
|
// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.State = void 0;
|
|
var State;
|
|
(function (State) {
|
|
State["Error"] = "error";
|
|
State["Running"] = "running";
|
|
State["Stopped"] = "stopped";
|
|
State["Waiting"] = "waiting";
|
|
})(State = exports.State || (exports.State = {}));
|