Socket
Socket
Sign inDemoInstall

plutonio

Package Overview
Dependencies
28
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.0 to 0.5.1

4

dist/scanner/types.d.ts

@@ -29,3 +29,3 @@ /**

export type Interfaces = {
[name: string]: Interace;
[name: string]: Interface;
};

@@ -47,3 +47,3 @@ export type Enums = {

export type Enum = CommonAttributes;
export type Interace = CommonAttributes & {
export type Interface = CommonAttributes & {
extends?: string[];

@@ -50,0 +50,0 @@ };

{
"name": "plutonio",
"version": "0.5.0",
"version": "0.5.1",
"description": "A typescript library that scans your typescript project and generate a schema of all types and interfaces of the project.",

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

@@ -168,5 +168,5 @@ /**

function _resolve_node(node: ts.Node, name: string): t.Type | t.Interace {
function _resolve_node(node: ts.Node, name: string): t.Type | t.Interface {
const type_attributes = _resolve_type_attributes(node);
const scanned_type: t.Type | t.Interace | t.Enums = {
const scanned_type: t.Type | t.Interface | t.Enums = {
name,

@@ -173,0 +173,0 @@ kind: _resolve_kind(node),

@@ -35,3 +35,3 @@ /**

export type Interfaces = {
[name: string]: Interace;
[name: string]: Interface;
};

@@ -60,3 +60,3 @@

export type Interace = CommonAttributes & {
export type Interface = CommonAttributes & {
extends?: string[];

@@ -63,0 +63,0 @@ };

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc