import { TActive, TWithName, TWithTags } from '../../Mixins'; import { RendererModes } from '../Constants'; import { WebGLRendererParameters } from 'three'; export type TRendererParams = WebGLRendererParameters & Readonly<{ canvas: HTMLElement; mode: RendererModes; isShadowMapEnabled?: boolean; maxPixelRatio?: number; }> & TActive & TWithName & TWithTags;