diff --git a/examples/jsm/loaders/GLTFLoader.d.ts b/examples/jsm/loaders/GLTFLoader.d.ts index 02081aaf7410b8c41a9227719715ee879002850f..237c79ab1331c70ce55d9ee3bc7fa88ed436ee4c 100644 --- a/examples/jsm/loaders/GLTFLoader.d.ts +++ b/examples/jsm/loaders/GLTFLoader.d.ts @@ -1,9 +1,9 @@ import { AnimationClip, Camera, + Group, Loader, - LoadingManager, - Scene + LoadingManager } from '../../../src/Three'; import { DRACOLoader } from './DRACOLoader'; @@ -11,8 +11,8 @@ import { DDSLoader } from './DDSLoader'; export interface GLTF { animations: AnimationClip[]; - scene: Scene; - scenes: Scene[]; + scene: Group; + scenes: Group[]; cameras: Camera[]; asset: { copyright?: string;