-
Notifications
You must be signed in to change notification settings - Fork 302
/
index.d.ts
69 lines (53 loc) · 2.03 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
export * from './typescript/application';
export * from './typescript/Camera';
export * from './typescript/createCompositor';
export * from './typescript/FrameBuffer';
export * from './typescript/Geometry';
export * from './typescript/GeometryBase';
export * from './typescript/InstancedMesh';
export * from './typescript/Joint';
export * from './typescript/Light';
export * from './typescript/Material';
export * from './typescript/Mesh';
export * from './typescript/Node';
export * from './typescript/Renderable';
export * from './typescript/Renderer';
export * from './typescript/Scene';
export * from './typescript/Shader';
export * from './typescript/Skeleton';
export * from './typescript/Texture';
export * from './typescript/Texture2D';
export * from './typescript/TextureCube';
export * from './typescript/Timeline';
export * from './typescript/math';
// https://stackoverflow.com/questions/30357634/how-do-i-use-namespaces-with-typescript-external-modules
import * as light from './typescript/light/index';
export { light }
import * as geometry from './typescript/geometry/index';
export { geometry }
import * as core from './typescript/core/index';
export { core }
import * as camera from './typescript/camera/index';
export { camera }
import * as async from './typescript/async/index';
export { async }
import * as animation from './typescript/animation/index';
export { animation }
import * as compositor from './typescript/compositor/index';
export { compositor }
import * as particle from './typescript/particle/index';
export { particle }
import * as picking from './typescript/picking/index';
export { picking }
import * as plugin from './typescript/plugin/index';
export { plugin }
import * as prePass from './typescript/prePass/index';
export { prePass }
import * as shader from './typescript/shader/index';
export { shader }
import * as util from './typescript/util/index';
export { util }
import * as deferred from './typescript/deferred/index';
export { deferred }
// import * as math from './typescript/math/index';
// export { math }