Skip to content

Commit

Permalink
fix: depth video frame type
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximvdw committed Nov 28, 2023
1 parent fb323a8 commit 73d57d4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/DepthVideoFrame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ import { DepthImageFrame } from './DepthImageFrame';
import { CameraObject } from './object';

@SerializableObject()
export class DepthVideoFrame<I = any, C extends CameraObject = CameraObject> extends DepthImageFrame<I, C> {}
export class DepthVideoFrame<D = any, I = any, C extends CameraObject = CameraObject> extends DepthImageFrame<
D,
I,
C
> {}

0 comments on commit 73d57d4

Please sign in to comment.