@contrail/types
Advanced tools
Comparing version 1.0.13 to 1.0.14
export * from './formatter'; | ||
export * from './properties'; | ||
export * from './type-properties'; | ||
export * from './formulas'; | ||
export * from './types'; | ||
export * from './type-interfaces'; | ||
export * from './type-roots'; |
@@ -14,4 +14,6 @@ "use strict"; | ||
__exportStar(require("./formatter"), exports); | ||
__exportStar(require("./properties"), exports); | ||
__exportStar(require("./type-properties"), exports); | ||
__exportStar(require("./formulas"), exports); | ||
__exportStar(require("./types"), exports); | ||
__exportStar(require("./type-interfaces"), exports); | ||
__exportStar(require("./type-roots"), exports); |
export * from './type'; | ||
export * from './type-root'; |
@@ -14,2 +14,1 @@ "use strict"; | ||
__exportStar(require("./type"), exports); | ||
__exportStar(require("./type-root"), exports); |
@@ -1,2 +0,4 @@ | ||
import { TypeProperty } from "../properties"; | ||
import { Relation } from "../relations/relation"; | ||
import { TypeInterface } from "../type-interfaces"; | ||
import { TypeProperty } from "../type-properties"; | ||
export interface Type { | ||
@@ -10,9 +12,9 @@ id?: string; | ||
parent?: Type; | ||
children?: Type[]; | ||
children?: Array<Type>; | ||
parentTypePath?: string; | ||
typeRootSlug?: string; | ||
loadingProperties?: any; | ||
typeInterfaces?: string[]; | ||
relations?: any; | ||
typeInterfaces?: Array<TypeInterface>; | ||
relations?: { | ||
[key: string]: Relation; | ||
}; | ||
typeProperties?: Array<TypeProperty>; | ||
} |
{ | ||
"name": "@contrail/types", | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "Types Utility module", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
23522
38
558