/** * Interface describing the generic Camera Configuration object, with configuration relevant both to 2D and 3D Cameras */ export interface CameraConfig { /** A name for the Camera */ name: string; }