import { TActive, TWithName, TWithTags } from '../../Mixins'; import { TEnvMapTexture } from './TEnvMapTexture'; export type TEnvMapParams = Readonly<{ texture: TEnvMapTexture; }> & TActive & TWithName & TWithTags;