mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
20 lines
325 B
JSON
20 lines
325 B
JSON
|
{
|
||
|
"jsonrpc": "2.0",
|
||
|
"id": 1,
|
||
|
"method": "textDocument/signatureHelp",
|
||
|
"params": {
|
||
|
"textDocument": {
|
||
|
"uri": "file:///a/file.ts"
|
||
|
},
|
||
|
"position": {
|
||
|
"character": 4,
|
||
|
"line": 9
|
||
|
},
|
||
|
"context": {
|
||
|
"triggerKind": 2,
|
||
|
"triggerCharacter": "(",
|
||
|
"isRetrigger": false
|
||
|
}
|
||
|
}
|
||
|
}
|