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

ts-structure-parser

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-structure-parser - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

5

dist/tsStructureParser.js

@@ -336,2 +336,5 @@ /**

}
if (t.kind == ts.SyntaxKind.VoidKeyword) {
return basicType("void", null);
}
if (t.kind == ts.SyntaxKind.TypeReference) {

@@ -365,3 +368,3 @@ var tr = t;

}
throw new Error("Case not supported" + t.kind);
throw new Error("Case not supported: " + t.kind);
}

@@ -368,0 +371,0 @@ exports.buildType = buildType;

2

package.json
{
"name": "ts-structure-parser",
"version": "0.0.10",
"version": "0.0.11",
"private": false,

@@ -5,0 +5,0 @@ "main": "dist/tsStructureParser.js",

@@ -448,2 +448,5 @@ /**

}
if (t.kind==ts.SyntaxKind.VoidKeyword){
return basicType("void",null)
}

@@ -478,3 +481,3 @@ if (t.kind==ts.SyntaxKind.TypeReference){

}
throw new Error("Case not supported"+t.kind)
throw new Error("Case not supported: "+t.kind)
}

@@ -481,0 +484,0 @@ function parseQualified2(n:any):string{

Sorry, the diff of this file is not supported yet

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