UNPKG

typescript-language-server

Version:

Language Server Protocol (LSP) implementation for TypeScript using tsserver

28 lines 1.24 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /* * Copyright (C) 2022 TypeFox and others. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 */ export var ServerType; (function (ServerType) { ServerType["Syntax"] = "syntax"; ServerType["Semantic"] = "semantic"; })(ServerType = ServerType || (ServerType = {})); export var ServerResponse; (function (ServerResponse) { class Cancelled { constructor(reason) { this.reason = reason; this.type = 'cancelled'; } } ServerResponse.Cancelled = Cancelled; ServerResponse.NoContent = { type: 'noContent' }; ServerResponse.NoServer = { type: 'noServer' }; })(ServerResponse = ServerResponse || (ServerResponse = {})); //# sourceMappingURL=requests.js.map