vscode-uri
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -30,3 +30,3 @@ /** | ||
private _fsPath; | ||
private constructor(); | ||
constructor(); | ||
/** | ||
@@ -36,3 +36,3 @@ * scheme is the 'http' part of 'http://www.msft.com/some/path?query#fragment'. | ||
*/ | ||
readonly scheme: string; | ||
scheme: string; | ||
/** | ||
@@ -42,15 +42,15 @@ * authority is the 'www.msft.com' part of 'http://www.msft.com/some/path?query#fragment'. | ||
*/ | ||
readonly authority: string; | ||
authority: string; | ||
/** | ||
* path is the '/some/path' part of 'http://www.msft.com/some/path?query#fragment'. | ||
*/ | ||
readonly path: string; | ||
path: string; | ||
/** | ||
* query is the 'query' part of 'http://www.msft.com/some/path?query#fragment'. | ||
*/ | ||
readonly query: string; | ||
query: string; | ||
/** | ||
* fragment is the 'fragment' part of 'http://www.msft.com/some/path?query#fragment'. | ||
*/ | ||
readonly fragment: string; | ||
fragment: string; | ||
/** | ||
@@ -62,3 +62,3 @@ * Returns a string representing the corresponding file system path of this Uri. | ||
*/ | ||
readonly fsPath: string; | ||
fsPath: string; | ||
/** | ||
@@ -65,0 +65,0 @@ * Derive a new Uri from this Uri. |
{ | ||
"name": "vscode-uri", | ||
"author": "Microsoft", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "The URI implementation that is used by VS Code and its extensions", | ||
@@ -24,4 +24,4 @@ "main": "lib/index.js", | ||
"mocha": "^2.5.3", | ||
"typescript": "next" | ||
"typescript": "1.8.10" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20664