import * as THREE from "three/webgpu"; import {get} from "lodash-es"; export const isPointLightHelper = (value: unknown): value is THREE.PointLightHelper => { return get(value, 'isPointLightHelper') === true; }