From e1d08a2f25823be4574deb13c6e417f96484d58b Mon Sep 17 00:00:00 2001 From: Brian Zinn Date: Wed, 25 Oct 2023 09:33:02 -0700 Subject: [PATCH] fix: missing export for public property type --- packages/dev/core/src/Cameras/camera.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/dev/core/src/Cameras/camera.ts b/packages/dev/core/src/Cameras/camera.ts index 0f253e5110e..9e2d071ba1a 100644 --- a/packages/dev/core/src/Cameras/camera.ts +++ b/packages/dev/core/src/Cameras/camera.ts @@ -25,7 +25,10 @@ import type { TargetCamera } from "./targetCamera"; import type { Ray } from "../Culling/ray"; import type { ArcRotateCamera } from "./arcRotateCamera"; -interface IObliqueParams { +/** + * Oblique projection values + */ +export interface IObliqueParams { /** The angle of the plane */ angle: number; /** The length of the plane */