massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver-protocol / lib / common / protocol.showDocument.js
1 "use strict";
2 /* --------------------------------------------------------------------------------------------
3  * Copyright (c) Microsoft Corporation. All rights reserved.
4  * Licensed under the MIT License. See License.txt in the project root for license information.
5  * ------------------------------------------------------------------------------------------ */
6 Object.defineProperty(exports, "__esModule", { value: true });
7 exports.ShowDocumentRequest = void 0;
8 const messages_1 = require("./messages");
9 /**
10  * A request to show a document. This request might open an
11  * external program depending on the value of the URI to open.
12  * For example a request to open `https://code.visualstudio.com/`
13  * will very likely open the URI in a WEB browser.
14  *
15  * @since 3.16.0
16 */
17 var ShowDocumentRequest;
18 (function (ShowDocumentRequest) {
19     ShowDocumentRequest.method = 'window/showDocument';
20     ShowDocumentRequest.type = new messages_1.ProtocolRequestType(ShowDocumentRequest.method);
21 })(ShowDocumentRequest = exports.ShowDocumentRequest || (exports.ShowDocumentRequest = {}));
22 //# sourceMappingURL=protocol.showDocument.js.map