import type { ThreekitAuthProps } from '../../ThreekitAuthProps.js'; import { Route } from '../Route.js'; import { Analytics2 } from './analytics2/Analytics2.js'; import { Exporter } from './exporter/Exporter.js'; import { Glb } from './glb/Glb.js'; import { Image2 } from './image2/Images2.js'; const API_ROUTE = `/api/alpha`; export class Alpha extends Route { public glb: Glb; public exporter: Exporter; public analytics2: Analytics2; public image2: Image2; constructor(auth: ThreekitAuthProps) { super(auth, API_ROUTE); this.glb = new Glb(auth); this.exporter = new Exporter(auth); this.analytics2 = new Analytics2(auth); this.image2 = new Image2(auth); } }