import { TColor } from '../../Color'; import { TActive, TWithName, TWithTags } from '../../Mixins'; import { TTexture } from '../../Texture'; import { CubeTexture } from 'three'; export type TSceneParams = Readonly<{ background?: string | TColor | TTexture | CubeTexture; }> & TWithName & TActive & TWithTags;