mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
1a9209d1e3
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
25 lines
424 B
JSON
25 lines
424 B
JSON
{
|
|
"jsonrpc": "2.0",
|
|
"method": "textDocument/didChange",
|
|
"params": {
|
|
"textDocument": {
|
|
"uri": "file:///a/file.ts",
|
|
"version": 2
|
|
},
|
|
"contentChanges": [
|
|
{
|
|
"range": {
|
|
"start": {
|
|
"line": 1,
|
|
"character": 11
|
|
},
|
|
"end": {
|
|
"line": 1,
|
|
"character": 13
|
|
}
|
|
},
|
|
"text": ""
|
|
}
|
|
]
|
|
}
|
|
}
|