mx3d 0.5.0 → 0.5.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.
@@ -0,0 +1,6 @@
1
+ import { App } from "../components/App";
2
+ export default class TileLoader {
3
+ app: App;
4
+ constructor(_app: App);
5
+ load(url: string): Promise<void>;
6
+ }
package/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import { EventType } from "./events/EventType";
5
5
  import { StatusType } from "./components/StatusType";
6
6
  import { UI } from "./components/UI";
7
7
  import { Effect, EffectType } from "./effects/Effect";
8
+ import TileLoader from "./earths/TileLoader";
8
9
  export default class MX3D {
9
10
  static accessToken: string;
10
11
  static pk: string;
@@ -18,4 +19,5 @@ export default class MX3D {
18
19
  static EventType: typeof EventType;
19
20
  static StatusType: typeof StatusType;
20
21
  static Effect: typeof Effect;
22
+ static TileLoader: typeof TileLoader;
21
23
  }