Browse Source

TS: Fix path for exporter files.

Mugen87 6 years ago
parent
commit
28d445afaf

+ 1 - 1
examples/jsm/exporters/ColladaExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from '../../../src/Three';
+import { Object3D } from '../../../src/Three';
 
 export class ColladaExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/GLTFExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from '../../../src/Three';
+import { Object3D } from '../../../src/Three';
 
 export class GLTFExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/MMDExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from "../../..";
+import { Object3D } from '../../../src/Three';
 
 export class MMDExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/OBJExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from '../../../src/Three';
+import { Object3D } from '../../../src/Three';
 
 export class OBJExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/PLYExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from "../../..";
+import { Object3D } from '../../../src/Three';
 
 export class PLYExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/STLExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from "../../..";
+import { Object3D } from '../../../src/Three';
 
 export class STLExporter {
 	constructor();

+ 1 - 1
examples/jsm/exporters/TypedGeometryExporter.d.ts

@@ -1,4 +1,4 @@
-import {Object3D} from "../../..";
+import { Object3D } from '../../../src/Three';
 
 export class TypedGeometryExporterD {
 	constructor();