浏览代码

Add TypeScript definitions for GLTFExporter

Nathan Bierema 6 年之前
父节点
当前提交
61b7e8c5af
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      examples/jsm/exporters/GLTFExporter.d.ts

+ 7 - 0
examples/jsm/exporters/GLTFExporter.d.ts

@@ -0,0 +1,7 @@
+import { Object3D } from '../../../src/Three';
+
+export class GLTFExporter {
+  constructor();
+
+  parse(input: Object3D, onCompleted: (gltf: object) => void, options: object): null;
+}