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 1a0dfba commit fb0ec32Copy full SHA for fb0ec32
src/core/EventDispatcher.d.ts
@@ -1,4 +1,11 @@
1
-import { Event } from './Face3';
+/**
2
+ * Event object.
3
+ */
4
+export interface Event {
5
+ type: string;
6
+ target?: any;
7
+ [attachment: string]: any;
8
+}
9
10
/**
11
* JavaScript events for custom objects
src/core/Face3.d.ts
@@ -1,12 +1,6 @@
import { Vector3 } from './../math/Vector3';
import { Color } from './../math/Color';
-export interface Event {
- type: string;
- target?: any;
- [attachment: string]: any;
-}
-
* Triangle face.
12
*
0 commit comments