mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
ccd6ee5c23
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
12 lines
382 B
JSON
12 lines
382 B
JSON
{
|
|
"jsonrpc": "2.0",
|
|
"method": "textDocument/didOpen",
|
|
"params": {
|
|
"textDocument": {
|
|
"uri": "file:///a/file.ts",
|
|
"languageId": "typescript",
|
|
"version": 1,
|
|
"text": "/**\n * Adds two numbers.\n * @param a This is a first number.\n * @param b This is a second number.\n */\nfunction add(a: number, b: number) {\n return a + b;\n}\n\nadd("
|
|
}
|
|
}
|
|
}
|