mx3d 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +29 -0
  2. package/package.json +1 -1
package/index.d.ts ADDED
@@ -0,0 +1,29 @@
1
+ import "babylonjs";
2
+ import "babylonjs-materials";
3
+ import "babylonjs-gui";
4
+ import "babylonjs-loaders";
5
+ import "babylonjs-serializers";
6
+ import App from "./App";
7
+ import EffectMgr from "./components/EffectMgr";
8
+ import Tools from "./tools/Tools";
9
+ import { EffectType } from "./components/EffectType";
10
+ import { EventType } from "./components/EventType";
11
+ import UI from "./components/UI";
12
+ import Builder from "./components/Builder";
13
+ import HubService from "./HubService";
14
+ import Earth from "./mapboxgl/Earth";
15
+ export default class MX3D {
16
+ static accessToken: string;
17
+ static pk: string;
18
+ static sl: string;
19
+ static rl: string;
20
+ static App: typeof App;
21
+ static Earth: typeof Earth;
22
+ static Tools: typeof Tools;
23
+ static EffectMgr: typeof EffectMgr;
24
+ static HubService: typeof HubService;
25
+ static UI: typeof UI;
26
+ static Builder: typeof Builder;
27
+ static EffectType: typeof EffectType;
28
+ static EventType: typeof EventType;
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mx3d",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "分支版本",
5
5
  "main": "mx3d.js",
6
6
  "typings": "./dist/index.d.ts",