diff --git a/threejs/three.d.ts b/threejs/three.d.ts index a9c33693c..240db3c93 100644 --- a/threejs/three.d.ts +++ b/threejs/three.d.ts @@ -1782,7 +1782,7 @@ declare module THREE { loadAjaxJSON(context: JSONLoader, url: string, callback: (geometry: Geometry, materials: Material[]) => void , texturePath?: string, callbackProgress?: (progress: Progress) => void ): void; - parse(json:string, texturePath:string): any; + parse(json: Object, texturePath?: string): { geometry: Geometry; materials?: Material[] }; } export interface JSonLoaderResultGeometry extends Geometry {