forked from wildpeaks/2018-example-threejs-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.d.ts
26 lines (22 loc) · 876 Bytes
/
globals.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
declare module 'three/examples/js/controls/OrbitControls' {
export const OrbitControls: typeof THREE.OrbitControls;
}
declare module 'three/examples/js/postprocessing/EffectComposer' {
export const EffectComposer: typeof THREE.EffectComposer;
export const Pass: typeof THREE.Pass;
}
declare module 'three/examples/js/postprocessing/RenderPass' {
export const RenderPass: typeof THREE.RenderPass;
}
declare module 'three/examples/js/postprocessing/ShaderPass' {
export const ShaderPass: typeof THREE.ShaderPass;
}
declare module 'three/examples/js/shaders/CopyShader' {
export const CopyShader: typeof THREE.CopyShader;
}
declare module 'three/examples/js/shaders/DotScreenShader' {
export const DotScreenShader: typeof THREE.DotScreenShader;
}
declare module 'three/examples/js/shaders/RGBShiftShader' {
export const RGBShiftShader: typeof THREE.RGBShiftShader;
}