Change 'Object' to 'any'.

This commit is contained in:
Drew Noakes
2014-10-01 17:58:08 +01:00
parent d70c76ffdc
commit 995b145b1a
+1 -1
View File
@@ -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: Object, texturePath?: string): { geometry: Geometry; materials?: Material[] };
parse(json: any, texturePath?: string): { geometry: Geometry; materials?: Material[] };
}
export interface JSonLoaderResultGeometry extends Geometry {