import { AlphaSingleConfiguration } from './components/AlphaSingleConfiguration'; import { BlendModeConfiguration } from './components/BlendModeConfiguration'; import { DepthConfiguration } from './components/DepthConfiguration'; import { MaskConfiguration } from './components/MaskConfiguration'; import { RenderNodesConfiguration } from './components/RenderNodesConfiguration'; import { ScrollFactorConfiguration } from './components/ScrollFactorConfiguration'; import { TransformConfiguration } from './components/TransformConfiguration'; import { VisibleConfiguration } from './components/VisibleConfiguration'; import { GlobalConfiguration } from './global/GlobalConfiguration'; export interface GraphicsConfiguration extends AlphaSingleConfiguration, BlendModeConfiguration, DepthConfiguration, GlobalConfiguration, MaskConfiguration, RenderNodesConfiguration, ScrollFactorConfiguration, TransformConfiguration, VisibleConfiguration { }