Skip to content

Commit

Permalink
Merge pull request #14465 from brianzinn/master
Browse files Browse the repository at this point in the history
fix: missing export for public property type
  • Loading branch information
sebavan committed Oct 25, 2023
2 parents 41b42a6 + e1d08a2 commit 381a602
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/dev/core/src/Cameras/camera.ts
Expand Up @@ -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 */
Expand Down

0 comments on commit 381a602

Please sign in to comment.