Skip to content

Commit

Permalink
chore(ExtrudeGeometry): fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
lslzl3000 committed Oct 22, 2024
1 parent fc2303d commit 2396914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/geometry/ExtrudeGeometry/ExtrudeGeometry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class ExtrudeGeometry extends GeometryBase {
protected verticesArray: number[] = [];
protected uvArray: number[] = [];

constructor(shapes?: Shape2D[], options?) {
constructor(shapes?: Shape2D[], options?: ExtrudeGeometryArgs) {
super();
this.options = options;
this.shapes = shapes;
Expand Down
2 changes: 1 addition & 1 deletion packages/geometry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@orillusion/geometry",
"version": "0.2.5",
"version": "0.2.6",
"author": "Orillusion",
"description": "Orillusion Geometry Plugin",
"main": "./dist/geometry.umd.js",
Expand Down

0 comments on commit 2396914

Please sign in to comment.