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