diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index dc9b26a335..c3a6a661f5 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -1949,10 +1949,12 @@ export class DirectionalLight extends Light { */ intensity: number; - shadow: LightShadow; + shadow: DirectionalLightShadow; } -export class DirectionalLightShadow extends LightShadow {} +export class DirectionalLightShadow extends LightShadow { + camera: OrthographicCamera; +} export class HemisphereLight extends Light { constructor(skyColorHex?: number|string, groundColorHex?: number|string, intensity?: number);