@angular/build
Version:
Official build system for Angular
18 lines (17 loc) • 646 B
JavaScript
;
/**
* @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.ResultKind = void 0;
var ResultKind;
(function (ResultKind) {
ResultKind[ResultKind["Failure"] = 0] = "Failure";
ResultKind[ResultKind["Full"] = 1] = "Full";
ResultKind[ResultKind["Incremental"] = 2] = "Incremental";
ResultKind[ResultKind["ComponentUpdate"] = 3] = "ComponentUpdate";
})(ResultKind || (exports.ResultKind = ResultKind = {}));