import { TDestroyable, TWithId } from '../../Mixins'; import { TextRendererType } from '../Constants'; import { CSS2DRenderer } from '../../../../../node_modules/@types/three/examples/jsm/renderers/CSS2DRenderer'; import { CSS3DRenderer } from '../../../../../node_modules/@types/three/examples/jsm/renderers/CSS3DRenderer'; export type TTextRenderer = Readonly<{ type: TextRendererType; renderer: T; updateSize: (size: DOMRect) => void; }> & TWithId & TDestroyable;