Comparing version 0.6.0-next.12 to 0.6.0-next.13
@@ -38,2 +38,3 @@ import * as ts from 'typescript'; | ||
function getSymbol(node: ts.Node): ts.Symbol | undefined; | ||
function getJsDoc(node: ts.JSDocContainer): ts.JSDoc[] | undefined; | ||
} | ||
@@ -40,0 +41,0 @@ export declare namespace SourceFile { |
@@ -261,2 +261,6 @@ /* -------------------------------------------------------------------------------------------- | ||
Node.getSymbol = getSymbol; | ||
function getJsDoc(node) { | ||
return node.jsDoc; | ||
} | ||
Node.getJsDoc = getJsDoc; | ||
})(Node = exports.Node || (exports.Node = {})); | ||
@@ -263,0 +267,0 @@ var SourceFile; |
{ | ||
"name": "lsif-tsc", | ||
"description": "Tool to create an LSIF dump for TypeScript projects.", | ||
"version": "0.6.0-next.12", | ||
"version": "0.6.0-next.13", | ||
"author": "Microsoft Corporation", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
628020
7178