26 lines
968 B
JavaScript
26 lines
968 B
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DiagnosticSeverity = void 0;
|
|
var DiagnosticSeverity;
|
|
(function (DiagnosticSeverity) {
|
|
/**
|
|
* Something not allowed by the rules of a language or other means.
|
|
*/
|
|
DiagnosticSeverity[DiagnosticSeverity["Error"] = 0] = "Error";
|
|
/**
|
|
* Something suspicious but allowed.
|
|
*/
|
|
DiagnosticSeverity[DiagnosticSeverity["Warning"] = 1] = "Warning";
|
|
/**
|
|
* Something to inform about but not a problem.
|
|
*/
|
|
DiagnosticSeverity[DiagnosticSeverity["Information"] = 2] = "Information";
|
|
/**
|
|
* Something to hint to a better way of doing it, like proposing
|
|
* a refactoring.
|
|
*/
|
|
DiagnosticSeverity[DiagnosticSeverity["Hint"] = 3] = "Hint";
|
|
})(DiagnosticSeverity = exports.DiagnosticSeverity || (exports.DiagnosticSeverity = {}));
|
|
//# sourceMappingURL=ui.js.map
|