UNPKG

@angular/cli

Version:
20 lines 803 B
"use strict"; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CommandScope = void 0; var CommandScope; (function (CommandScope) { /** Command can only run inside an Angular workspace. */ CommandScope[CommandScope["In"] = 0] = "In"; /** Command can only run outside an Angular workspace. */ CommandScope[CommandScope["Out"] = 1] = "Out"; /** Command can run inside and outside an Angular workspace. */ CommandScope[CommandScope["Both"] = 2] = "Both"; })(CommandScope || (exports.CommandScope = CommandScope = {})); //# sourceMappingURL=definitions.js.map