diff --git a/types/three/src/lights/SpotLight.d.ts b/types/three/src/lights/SpotLight.d.ts index 562894ec3..bfc4973f5 100644 --- a/types/three/src/lights/SpotLight.d.ts +++ b/types/three/src/lights/SpotLight.d.ts @@ -4,6 +4,7 @@ import { Object3D } from './../core/Object3D'; import { SpotLightShadow } from './SpotLightShadow'; import { Light } from './Light'; import { ColorRepresentation } from '../utils'; +import { Texture } from '../textures/Texture'; /** * A point light that can cast shadow in one direction. @@ -68,5 +69,10 @@ export class SpotLight extends Light { */ penumbra: number; + /** + * @default null + */ + map: Texture | null; + readonly isSpotLight: true; }