We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea01bce commit 46b9562Copy full SHA for 46b9562
packages/chili-three/test/viewGizmo.ts
@@ -1,6 +1,12 @@
1
// Part of the Chili3d Project, under the AGPL-3.0 License.
2
// See LICENSE file in the project root for full license information.
3
4
-export class ViewGizmo extends HTMLElement {}
+import { IViewGizmo } from "chili-core";
5
+
6
+export class ViewGizmo extends HTMLElement implements IViewGizmo {
7
+ update(): void {}
8
+ dispose(): void {}
9
+ setDom(dom: HTMLElement) {}
10
+}
11
12
customElements.define("view-gizmo", ViewGizmo);
0 commit comments