Comparing version 0.5.0 to 0.5.1
@@ -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
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
102556