import { TAmbientLightWrapper } from './TAmbientLightWrapper'; import { TDirectionalLightWrapper } from './TDirectionalLightWrapper'; import { THemisphereLightWrapper } from './THemisphereLightWrapper'; import { TPointLightWrapper } from './TPointLightWrapper'; import { TRectAreaLightWrapper } from './TRectAreaLightWrapper'; import { TSpotLightWrapper } from './TSpotLightWrapper'; export type TLightWrapper = TAmbientLightWrapper | TDirectionalLightWrapper | TPointLightWrapper | THemisphereLightWrapper | TRectAreaLightWrapper | TSpotLightWrapper;