@types/three
Version:
TypeScript definitions for three
19 lines (17 loc) • 494 B
TypeScript
import { OrthographicCamera } from "../cameras/OrthographicCamera.js";
import { LightShadow } from "./LightShadow.js";
/**
* Represents the shadow configuration of directional lights.
*/
export class DirectionalLightShadow extends LightShadow<OrthographicCamera> {
/**
* Constructs a new directional light shadow.
*/
constructor();
/**
* This flag can be used for type testing.
*
* @default true
*/
readonly isDirectionalLightShadow: boolean;
}