23 lines
1.1 KiB
JavaScript
23 lines
1.1 KiB
JavaScript
![]() |
"use strict";
|
||
|
/* --------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
* ------------------------------------------------------------------------------------------ */
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.ShowDocumentRequest = void 0;
|
||
|
const messages_1 = require("./messages");
|
||
|
/**
|
||
|
* A request to show a document. This request might open an
|
||
|
* external program depending on the value of the URI to open.
|
||
|
* For example a request to open `https://code.visualstudio.com/`
|
||
|
* will very likely open the URI in a WEB browser.
|
||
|
*
|
||
|
* @since 3.16.0
|
||
|
*/
|
||
|
var ShowDocumentRequest;
|
||
|
(function (ShowDocumentRequest) {
|
||
|
ShowDocumentRequest.method = 'window/showDocument';
|
||
|
ShowDocumentRequest.messageDirection = messages_1.MessageDirection.serverToClient;
|
||
|
ShowDocumentRequest.type = new messages_1.ProtocolRequestType(ShowDocumentRequest.method);
|
||
|
})(ShowDocumentRequest = exports.ShowDocumentRequest || (exports.ShowDocumentRequest = {}));
|