diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index c3a6a661f5..71dc6f4386 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -1987,10 +1987,14 @@ export class PointLight extends Light { distance: number; decay: number; - shadow: LightShadow; + shadow: PointLightShadow; power: number; } +export class PointLightShadow extends LightShadow { + camera: PerspectiveCamera; +} + /** * A point light that can cast shadow in one direction. */