Skip to content

Commit 46b9562

Browse files
committed
✨ feat: implement IViewGizmo interface in moduleNameMapper class
1 parent ea01bce commit 46b9562

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
// Part of the Chili3d Project, under the AGPL-3.0 License.
22
// See LICENSE file in the project root for full license information.
33

4-
export class ViewGizmo extends HTMLElement {}
4+
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+
}
511

612
customElements.define("view-gizmo", ViewGizmo);

0 commit comments

Comments
 (0)