UNPKG

trillion-widget

Version:

Trillion AR Widget

13 lines (12 loc) 572 B
import { BaseConfigDto } from './base-config.dto'; import { CameraRotationDto } from './camera-rotation.dto'; import { LightConfigDto } from './light-config.dto'; import { PointOfViewDto } from './point-of-view.dto'; import { ReflectionMapDto } from './reflection-map.dto'; export declare class ViewerConfigDto extends BaseConfigDto { readonly pointsOfView: Array<PointOfViewDto>; readonly viewerReflectionMap?: ReflectionMapDto; readonly lights: Array<LightConfigDto>; readonly cameraRotation: CameraRotationDto; readonly buyItNowEnabled?: boolean; }