From 3e56d61855ecec1103013dd9c091176871a2eb9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Hon?= Date: Wed, 2 Nov 2022 13:54:32 +0100 Subject: [PATCH] Update manifold.d.ts Add missing smooth function to the ManifoldStatic interface. --- bindings/wasm/manifold.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/wasm/manifold.d.ts b/bindings/wasm/manifold.d.ts index 87c99f2ee..24b7f185b 100644 --- a/bindings/wasm/manifold.d.ts +++ b/bindings/wasm/manifold.d.ts @@ -412,6 +412,7 @@ declare interface ManifoldStatic { cube: typeof cube; cylinder: typeof cylinder; sphere: typeof sphere; + smooth: typeof smooth; tetrahedron: typeof tetrahedron; extrude: typeof extrude; revolve: typeof revolve; @@ -426,4 +427,4 @@ declare interface ManifoldStatic { getCircularSegments: typeof getCircularSegments; } -declare const Module: ManifoldStatic; \ No newline at end of file +declare const Module: ManifoldStatic;