From 73d57d4ba3149d8941e5a505e8bed2af74b914e4 Mon Sep 17 00:00:00 2001 From: Maxim Van de Wynckel Date: Tue, 28 Nov 2023 15:08:04 +0100 Subject: [PATCH] fix: depth video frame type --- src/DepthVideoFrame.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/DepthVideoFrame.ts b/src/DepthVideoFrame.ts index abd52b7..5eead1e 100644 --- a/src/DepthVideoFrame.ts +++ b/src/DepthVideoFrame.ts @@ -3,4 +3,8 @@ import { DepthImageFrame } from './DepthImageFrame'; import { CameraObject } from './object'; @SerializableObject() -export class DepthVideoFrame extends DepthImageFrame {} +export class DepthVideoFrame extends DepthImageFrame< + D, + I, + C +> {}