Skip to content

Commit

Permalink
fix: missing export for public property type
Browse files Browse the repository at this point in the history
  • Loading branch information
brianzinn committed Oct 25, 2023
1 parent c97f5b8 commit e1d08a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/dev/core/src/Cameras/camera.ts
Original file line number Diff line number Diff line change
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 e1d08a2

Please sign in to comment.