Comparing version 0.0.49 to 0.0.50
{ | ||
"name": "web-ifc", | ||
"version": "0.0.49", | ||
"version": "0.0.50", | ||
"description": "ifc loading on the web", | ||
@@ -5,0 +5,0 @@ "module": "./web-ifc-api.js", |
@@ -65,15 +65,16 @@ /** | ||
expressID: number; | ||
delete(): void; | ||
} | ||
export interface point { | ||
export interface Point { | ||
x: number; | ||
y: number; | ||
} | ||
export interface curve { | ||
curves: Array<point>; | ||
export interface Curve { | ||
curves: Array<Point>; | ||
} | ||
export interface IfcCrossSection { | ||
curves: Array<curve>; | ||
curves: Array<Curve>; | ||
} | ||
export interface IfcAlignmentSegment { | ||
curves: Array<curve>; | ||
curves: Array<Curve>; | ||
} | ||
@@ -90,4 +91,5 @@ export interface IfcAlignment { | ||
GetIndexDataSize(): number; | ||
delete(): void; | ||
} | ||
export interface ifcType { | ||
export interface IfcType { | ||
typeID: number; | ||
@@ -198,3 +200,3 @@ typeName: string; | ||
*/ | ||
GetAllTypesOfModel(modelID: number): ifcType[]; | ||
GetAllTypesOfModel(modelID: number): IfcType[]; | ||
/** | ||
@@ -201,0 +203,0 @@ * Gets the ifc line data for a given express ID |
@@ -65,15 +65,16 @@ /** | ||
expressID: number; | ||
delete(): void; | ||
} | ||
export interface point { | ||
export interface Point { | ||
x: number; | ||
y: number; | ||
} | ||
export interface curve { | ||
curves: Array<point>; | ||
export interface Curve { | ||
curves: Array<Point>; | ||
} | ||
export interface IfcCrossSection { | ||
curves: Array<curve>; | ||
curves: Array<Curve>; | ||
} | ||
export interface IfcAlignmentSegment { | ||
curves: Array<curve>; | ||
curves: Array<Curve>; | ||
} | ||
@@ -90,4 +91,5 @@ export interface IfcAlignment { | ||
GetIndexDataSize(): number; | ||
delete(): void; | ||
} | ||
export interface ifcType { | ||
export interface IfcType { | ||
typeID: number; | ||
@@ -198,3 +200,3 @@ typeName: string; | ||
*/ | ||
GetAllTypesOfModel(modelID: number): ifcType[]; | ||
GetAllTypesOfModel(modelID: number): IfcType[]; | ||
/** | ||
@@ -201,0 +203,0 @@ * Gets the ifc line data for a given express ID |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 3 instances in 1 package
15731217
39236
0