massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver-protocol / lib / common / protocol.typeDefinition.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.TypeDefinitionRequest = void 0;
8 const messages_1 = require("./messages");
9 // @ts-ignore: to avoid inlining LocatioLink as dynamic import
10 let __noDynamicImport;
11 /**
12  * A request to resolve the type definition locations of a symbol at a given text
13  * document position. The request's parameter is of type [TextDocumentPositioParams]
14  * (#TextDocumentPositionParams) the response is of type [Definition](#Definition) or a
15  * Thenable that resolves to such.
16  */
17 var TypeDefinitionRequest;
18 (function (TypeDefinitionRequest) {
19     TypeDefinitionRequest.method = 'textDocument/typeDefinition';
20     TypeDefinitionRequest.type = new messages_1.ProtocolRequestType(TypeDefinitionRequest.method);
21 })(TypeDefinitionRequest = exports.TypeDefinitionRequest || (exports.TypeDefinitionRequest = {}));
22 //# sourceMappingURL=protocol.typeDefinition.js.map