Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Jul 13, 2023
1 parent 83759b2 commit 580582c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions types/three/src/loaders/ObjectLoader.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Loader } from './Loader.js';
import { LoadingManager } from './LoadingManager.js';
import { Object3D } from './../core/Object3D.js';
import { Texture } from './../textures/Texture.js';
import { Material } from './../materials/Material.js';
import { AnimationClip } from './../animation/AnimationClip.js';
import { Object3D } from '../core/Object3D.js';
import { Texture } from '../textures/Texture.js';
import { Material } from '../materials/Material.js';
import { AnimationClip } from '../animation/AnimationClip.js';
import { InstancedBufferGeometry } from '../core/InstancedBufferGeometry.js';
import { BufferGeometry } from '../core/BufferGeometry.js';
import { Source } from '../textures/Source.js';
Expand All @@ -26,8 +26,8 @@ export class ObjectLoader extends Loader {
parse<T extends Object3D>(json: any, onLoad?: (object: Object3D) => void): T;
// tslint:disable-next-line:no-unnecessary-generics
parseAsync<T extends Object3D>(json: any): Promise<T>;
parseGeometries(json: any): { [key: string]: InstancedBufferGeometry | BufferGeometry }; // Array of BufferGeometry or Geometry or Geometry2.
parseMaterials(json: any, textures: { [key: string]: Texture }): { [key: string]: Material }; // Array of Classes that inherits from Matrial.
parseGeometries(json: any): { [key: string]: InstancedBufferGeometry | BufferGeometry };
parseMaterials(json: any, textures: { [key: string]: Texture }): { [key: string]: Material };
parseAnimations(json: any): AnimationClip[];
parseImages(json: any, onLoad?: () => void): { [key: string]: Source };
parseImagesAsync(json: any): Promise<{ [key: string]: Source }>;
Expand Down

0 comments on commit 580582c

Please sign in to comment.