Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-languageserver-types

Package Overview
Dependencies
Maintainers
8
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-languageserver-types - npm Package Compare versions

Comparing version 3.4.0 to 3.5.0-next.1

10

lib/main.d.ts

@@ -537,2 +537,8 @@ /**

/**
* An optional set of characters that when pressed while this completion is active will accept it first and
* then type that character. *Note* that all commit characters should have `length=1` and that superfluous
* characters will be ignored.
*/
commitCharacters?: string[];
/**
* An optional [command](#Command) that is executed *after* inserting this completion. *Note* that

@@ -707,5 +713,5 @@ * additional modifications to the current document should be described with the

* For most programming languages there is only one location at which a symbol is
* defined.
* defined. If no definition can be found `null` is returned.
*/
export declare type Definition = Location | Location[];
export declare type Definition = Location | Location[] | null;
/**

@@ -712,0 +718,0 @@ * Value-object that contains additional information when

9

package.json
{
"name": "vscode-languageserver-types",
"description": "Types used by the Language server for node",
"version": "3.4.0",
"version": "3.5.0-next.1",
"author": "Microsoft Corporation",

@@ -18,6 +18,7 @@ "license": "MIT",

"prepublish": "npm run compile && npm test",
"compile": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"postpublish": "node ../build/npm/post-publish.js",
"compile": "node ../build/bin/tsc -p ./tsconfig.json",
"watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
"test": "node ../node_modules/mocha/bin/_mocha"
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc