run-scene-v2 0.1.0 → 0.1.2

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 (3) hide show
  1. package/index.d.ts +15 -0
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts ADDED
@@ -0,0 +1,15 @@
1
+ import { TransformControls } from "three/examples/jsm/controls/TransformControls";
2
+ import RunScene, { Utils, ModelEx, MaterialEx, TextureEx, Bus } from "./src/RunScene";
3
+ declare const _default: {
4
+ RunScene: typeof RunScene;
5
+ Utils: typeof Utils;
6
+ ModelEx: typeof ModelEx;
7
+ MaterialEx: typeof MaterialEx;
8
+ TextureEx: typeof TextureEx;
9
+ Three: typeof import("three");
10
+ ThreeEx: {
11
+ TransformControls: typeof TransformControls;
12
+ };
13
+ Bus: typeof Bus;
14
+ };
15
+ export default _default;